diff options
author | Alan Pearce | 2017-05-10 14:47:04 +0200 |
---|---|---|
committer | Alan Pearce | 2017-05-10 14:47:04 +0200 |
commit | 36cfb5b801d13bf3ff102a31512613366a296edc (patch) | |
tree | 29b98287ec191458035edd3468a1b8318ac2f647 | |
parent | 4bdc613a8980602dd35ec0ead87c6411ae4590de (diff) | |
download | dotfiles-36cfb5b801d13bf3ff102a31512613366a296edc.tar.lz dotfiles-36cfb5b801d13bf3ff102a31512613366a296edc.tar.zst dotfiles-36cfb5b801d13bf3ff102a31512613366a296edc.zip |
Emacs: Re-bind execute-extended-command
Move it away from eval-defun, as C-u C-M-x is useful for debugging elisp
-rw-r--r-- | emacs/.emacs.d/init.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 129ac66..6f6b753 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -437,7 +437,7 @@ Option/alt, then Control. (bind-key* "s-x" (define-prefix-command 'super-x-map)) (bind-key* "s-," #'switch-to-dotfiles) -(bind-key* "C-M-x" #'execute-extended-command) +(bind-key* "C-x M-x" #'execute-extended-command) (set-register ?z `(file . ,(expand-file-name ".config/zsh/zshrc" "~"))) #+END_SRC |