make C-x i switch windows in reverse just like I had C-x C-i doing for consistency

This commit is contained in:
2011-11-12 11:55:16 +00:00
parent 9c7ab29f97
commit 5391d482bc

View File

@@ -24,8 +24,9 @@
(global-set-key (kbd "s-<right>") 'end-of-line)
;; Window switching (via helpers.el).
(global-set-key (kbd "C-x C-o") 'other-window) ;; other-window
(global-set-key (kbd "C-x C-i") 'other-window-reverse) ;; other-window -1
(global-set-key (kbd "C-x i") 'other-window-reverse)
(global-set-key (kbd "C-x C-o") 'other-window)
(global-set-key (kbd "C-x C-i") 'other-window-reverse)
;; IBuffer
(when (require 'ibuffer nil 'noerror)