Skip to content

Emacs switch between frames using its geometry

http://stackoverflow.com/questions/91071/emacs-switch-to-previous-window
adding the following lines to .emacs file
(global-set-key (kbd "C-x ") 'windmove-up)
(global-set-key (kbd "C-x ") 'windmove-down)
(global-set-key (kbd "C-x ") 'windmove-right)
(global-set-key (kbd "C-x ") 'windmove-left)