diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-03-15 11:14:07 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-03-15 12:04:58 -0400 |
commit | 43fde37b6b062166b53b86b8e6ccd3247be42f54 (patch) | |
tree | c2d896dfc340264859ee3a6a046c3a240c7fb9f3 | |
parent | 09f5609dac91c1465250007244501228734f4c4a (diff) | |
download | emacs.d-43fde37b6b062166b53b86b8e6ccd3247be42f54.tar.gz |
Rebind M-o to scroll-other-window
-rw-r--r-- | lisp/init-framewin.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/init-framewin.el b/lisp/init-framewin.el index d804ad0..f84ba0c 100644 --- a/lisp/init-framewin.el +++ b/lisp/init-framewin.el @@ -38,7 +38,7 @@ 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) +(global-set-key (kbd "M-o") 'scroll-other-window) (defadvice clone-indirect-buffer-other-window (after clone-indirect-and-widen activate) |