Browse Source

Merge pull request #373 from benol/patch-1

Make "C-x C-m" a true alias for M-x by binding it to smex.
custom
Bozhidar Batsov 13 years ago
parent
commit
a9485b7b31
  1. 2
      core/prelude-global-keybindings.el

2
core/prelude-global-keybindings.el

@ -60,7 +60,7 @@
(global-set-key (kbd "C-x M-m") 'shell) (global-set-key (kbd "C-x M-m") 'shell)
;; If you want to be able to M-x without meta ;; If you want to be able to M-x without meta
(global-set-key (kbd "C-x C-m") 'execute-extended-command)
(global-set-key (kbd "C-x C-m") 'smex)
;; A complementary binding to the apropos-command (C-h a) ;; A complementary binding to the apropos-command (C-h a)
(define-key 'help-command "A" 'apropos) (define-key 'help-command "A" 'apropos)

Loading…
Cancel
Save