diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-10-29 01:39:24 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-10-29 01:39:24 -0400 |
commit | cb3faf578566d6c59474a4bc0cf089afa6ea3b75 (patch) | |
tree | 157cf6e9d45f6a4fa3c847fcbb477e5a564c8889 | |
parent | e5f83606505b140f4797fb244141d41c5281f842 (diff) | |
download | emacs.d-cb3faf578566d6c59474a4bc0cf089afa6ea3b75.tar.gz |
Add second binding for Info-menu
-rw-r--r-- | lisp/init-general.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/init-general.el b/lisp/init-general.el index 629dd80..a6b8a02 100644 --- a/lisp/init-general.el +++ b/lisp/init-general.el @@ -41,6 +41,10 @@ (global-set-key (kbd "C-h :") 'find-function) +;; This is also bound to 'm', but I always want to press 'j' because +;; binding for `imenu' and `org-goto'. +(define-key Info-mode-map "j" 'Info-menu) + ;; Disable `suspend-frame' binding. (global-unset-key (kbd "C-x C-z")) |