diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-02-28 17:01:06 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-02-28 17:01:06 -0500 |
commit | e3af0ee7c0a2a4a80c74102ffd37f04e84b9fa06 (patch) | |
tree | f1a0d1c5a86f621e784b04be3fa4133b3d48abd6 | |
parent | acec53f17580699f7d5c8548bc148e0c4719fd94 (diff) | |
download | emacs.d-e3af0ee7c0a2a4a80c74102ffd37f04e84b9fa06.tar.gz |
Bind `other-window' to M-o
Suggested here:
http://www.masteringemacs.org/articles/2014/02/28/my-emacs-keybindings/
-rw-r--r-- | lisp/init-framewin.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/init-framewin.el b/lisp/init-framewin.el index 5d531b2..d804ad0 100644 --- a/lisp/init-framewin.el +++ b/lisp/init-framewin.el @@ -38,6 +38,8 @@ Assumes that the window is only split into two." (define-key window-map "s" 'km/swap-windows) (define-key window-map "l" 'km/switch-window-split) +(global-set-key (kbd "M-o") 'other-window) + (defadvice clone-indirect-buffer-other-window (after clone-indirect-and-widen activate) "Widen after cloning an indirect buffer." |