diff options
| author | Youmu <condy0919@gmail.com> | 2021-07-16 02:23:25 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-15 20:23:25 +0200 |
| commit | 3c1bc7f05fcd8c8e5bcd7fe0d3cf78338a7f701f (patch) | |
| tree | e909a98748b3eb46886d979c81966983a007d713 /evil-vars.el | |
| parent | 2000d65d23f68061f65215c96582dbb7774f8dcf (diff) | |
evil-vars: reset evil-overriding-maps to an empty list (#1494)
It's more intuitive for evil beginners if no keymap overriding evil maps.
fix #1488
Diffstat (limited to 'evil-vars.el')
| -rw-r--r-- | evil-vars.el | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/evil-vars.el b/evil-vars.el index 9e8b879..febeb63 100644 --- a/evil-vars.el +++ b/evil-vars.el @@ -894,18 +894,7 @@ expression matching the buffer's name and STATE is one of `normal', (defvar evil-pending-intercept-maps nil "An alist of pending intercept maps.") -(defcustom evil-overriding-maps - '((Buffer-menu-mode-map . nil) - (color-theme-mode-map . nil) - (comint-mode-map . nil) - (compilation-mode-map . nil) - (grep-mode-map . nil) - (dictionary-mode-map . nil) - (ert-results-mode-map . motion) - (Info-mode-map . motion) - (speedbar-key-map . nil) - (speedbar-file-key-map . nil) - (speedbar-buffers-key-map . nil)) +(defcustom evil-overriding-maps '() "Keymaps that should override Evil maps. Entries have the form (MAP-VAR . STATE), where MAP-VAR is a keymap variable and STATE is the state whose bindings |
