aboutsummaryrefslogtreecommitdiff
path: root/evil-integration.el
diff options
context:
space:
mode:
Diffstat (limited to 'evil-integration.el')
-rw-r--r--evil-integration.el17
1 files changed, 0 insertions, 17 deletions
diff --git a/evil-integration.el b/evil-integration.el
index 9dea69e..73a0879 100644
--- a/evil-integration.el
+++ b/evil-integration.el
@@ -74,23 +74,6 @@
;;; key-binding
-;; disable evil-esc-mode during a call to key-binding
-(defadvice key-binding (around evil activate)
- (let (evil-esc-mode)
- ad-do-it))
-
-;; disable evil-esc-mode during the read of a key-sequence
-;; TODO: should we handle the special ESC-delay, too?
-(defadvice read-key-sequence (around evil activate)
- (let (evil-esc-mode)
- ad-do-it))
-
-;; disable evil-esc-mode during the read of a key-sequence
-;; TODO: should we handle the special ESC-delay, too?
-(defadvice read-key-sequence-vector (around evil activate)
- (let (evil-esc-mode)
- ad-do-it))
-
;; Calling `keyboard-quit' should cancel repeat
(defadvice keyboard-quit (before evil activate)
(when (fboundp 'evil-repeat-abort)