diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-20T12·12+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-20T12·12+0000 |
commit | 117f0be7c2dee368944263ebe482a397acc7ea55 (patch) | |
tree | c63916632e275ca7473e062a2e0006da95a79206 /emacs | |
parent | d0d77baafb53d9cd2e18cc982368e484efb1b860 (diff) |
Unbind <SPC> in evil's motion map
By default this just advances the point one character, which I don't use nor want especially because my leader key is the space key.
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/wpc/wpc-keybindings.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/wpc/wpc-keybindings.el b/emacs/.emacs.d/wpc/wpc-keybindings.el index 595cb8793dab..c5306f08dc6a 100644 --- a/emacs/.emacs.d/wpc/wpc-keybindings.el +++ b/emacs/.emacs.d/wpc/wpc-keybindings.el @@ -74,7 +74,7 @@ (interactive) (let ((xref-prompt-for-identifier nil)) (call-interactively #'xref-find-references)))) - (general-unbind 'motion "M-." "C-p") + (general-unbind 'motion "M-." "C-p" "<SPC>") (general-unbind 'normal "s" "M-." "C-p" "C-n") (general-unbind 'insert "C-v" "C-d" "C-a" "C-e" "C-n" "C-p" "C-k") (setq evil-symbol-word-search t) |