diff options
author | Kyle Meyer <meyerkya@gmail.com> | 2013-06-19 16:32:11 -0400 |
---|---|---|
committer | Kyle Meyer <meyerkya@gmail.com> | 2013-06-19 16:32:11 -0400 |
commit | e5d270cfbea1909cd6aafca69629d38f6e6f2dda (patch) | |
tree | 1373c25380f00ec669f4dd1158d30638b53fd385 | |
parent | f2829b7842c18f728c84cf29e7358586b5608c5e (diff) | |
download | emacs.d-e5d270cfbea1909cd6aafca69629d38f6e6f2dda.tar.gz |
swap smex major mode commands and M-x
not using smex-major-mode-commands much, so move that to M-X and return
execute-extended-command back to original keybinding
-rw-r--r-- | init/km-smex.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init/km-smex.el b/init/km-smex.el index 3021771..b8b8429 100644 --- a/init/km-smex.el +++ b/init/km-smex.el @@ -2,6 +2,6 @@ (require 'smex) (smex-initialize) ;; smex bound in km-evil.ex (,x) -(global-set-key (kbd "M-x") 'smex-major-mode-commands) +(global-set-key (kbd "M-X") 'smex-major-mode-commands) ;; old M-x -(global-set-key (kbd "M-X") 'execute-extended-command) +(global-set-key (kbd "M-x") 'execute-extended-command) |