Add move one window back key command
This commit is contained in:
parent
50cab705d8
commit
5d4120674e
1 changed files with 6 additions and 1 deletions
|
|
@ -95,6 +95,11 @@
|
||||||
(require 'yasnippet)
|
(require 'yasnippet)
|
||||||
(yas-global-mode 1)
|
(yas-global-mode 1)
|
||||||
|
|
||||||
|
;; Move one window back command
|
||||||
|
(defun other-window-backward ()
|
||||||
|
"Goto previous window"
|
||||||
|
(interactive)
|
||||||
|
(other-window -1))
|
||||||
|
(global-set-key (kbd "\C-x p") 'other-window-backward)
|
||||||
|
|
||||||
(provide 'setup-editing)
|
(provide 'setup-editing)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue