diff --git a/custom/setup-editing.el b/custom/setup-editing.el index 513d30d..b8b807a 100644 --- a/custom/setup-editing.el +++ b/custom/setup-editing.el @@ -95,6 +95,11 @@ (require 'yasnippet) (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)