diff options
author | Amin Bandali <bandali@gnu.org> | 2019-06-21 10:39:59 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-06-21 10:39:59 -0400 |
commit | 526dc1d93664062cfdb0e55bd6623d9dc7993471 (patch) | |
tree | cdbbaa4d404b268721b7e09126c5af2c84ba71ea | |
parent | 47965d6936d0ffa6021f3010069fe5ec193ef1c3 (diff) | |
download | configs-526dc1d93664062cfdb0e55bd6623d9dc7993471.tar.gz configs-526dc1d93664062cfdb0e55bd6623d9dc7993471.tar.xz configs-526dc1d93664062cfdb0e55bd6623d9dc7993471.zip |
emacs: bind M-o to other-window
and move facemenu-keymap to M-O just in case
-rw-r--r-- | .emacs.d/init.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index d78e9b2..007cf6f 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -473,8 +473,6 @@ For disabling the behaviour for certain buffers and/or modes." ("C-c F d" . delete-frame) ("C-c F D" . server-edit) - ("C-c o" . other-window) - ("C-S-h C" . describe-char) ("C-S-h F" . describe-face) @@ -484,6 +482,9 @@ For disabling the behaviour for certain buffers and/or modes." ("s-p" . beginning-of-buffer) ("s-n" . end-of-buffer) + ("M-o" . other-window) + ("M-O" . facemenu-keymap) + :map emacs-lisp-mode-map ("<C-return>" . a/add-elisp-section)) |