diff --git a/README.md b/README.md index 7707c01..c9ffaf3 100644 --- a/README.md +++ b/README.md @@ -278,6 +278,7 @@ Keybinding | Description F11 | Make the window full screen. F12 | Toggle the Emacs menu bar. C-x g | Open Magit's status buffer. +C-x M-g | Open Magit's popup of popups. M-Z | Zap up to char. C-= | Run `expand-region` (incremental text selection). C-a | Run `prelude-move-beginning-of-line`. Read [this](http://emacsredux.com/blog/2013/05/22/smarter-navigation-to-the-beginning-of-a-line/) for details. diff --git a/core/prelude-editor.el b/core/prelude-editor.el index 65d84c7..f3871d2 100644 --- a/core/prelude-editor.el +++ b/core/prelude-editor.el @@ -141,8 +141,6 @@ (mapcar 'file-truename (list prelude-savefile-dir package-user-dir))))) (add-to-list 'recentf-exclude 'prelude-recentf-exclude-p) -;; ignore magit's commit message files -(add-to-list 'recentf-exclude "COMMIT_EDITMSG\\'") (recentf-mode +1) diff --git a/core/prelude-global-keybindings.el b/core/prelude-global-keybindings.el index 683a0a2..aecb1ee 100644 --- a/core/prelude-global-keybindings.el +++ b/core/prelude-global-keybindings.el @@ -109,6 +109,7 @@ (global-set-key (kbd "") 'menu-bar-mode) (global-set-key (kbd "C-x g") 'magit-status) +(global-set-key (kbd "C-x M-g") 'magit-dispatch-popup) (global-set-key (kbd "C-=") 'er/expand-region)