From 58ec625a94c3a7f1d8f45fae29f26e890a190062 Mon Sep 17 00:00:00 2001 From: Christopher Taylor Date: Mon, 30 Nov 2015 12:10:07 +0100 Subject: [PATCH] custom handling for deft causes duplicate inserts --- evil-escape.el | 1 - 1 file changed, 1 deletion(-) diff --git a/evil-escape.el b/evil-escape.el index e9e6498..e583016 100644 --- a/evil-escape.el +++ b/evil-escape.el @@ -299,7 +299,6 @@ with a key sequence." "Delete character while taking into account mode specifities." (pcase major-mode (`term-mode (call-interactively 'term-send-backspace)) - (`deft-mode (call-interactively 'deft-filter-increment)) (_ (cond ((bound-and-true-p isearch-mode) (isearch-delete-char)) (t (evil-escape--delete-func))))))