Skip to content

Instantly share code, notes, and snippets.

@rawsyntax
Last active September 29, 2015 23:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rawsyntax/1683375 to your computer and use it in GitHub Desktop.
Save rawsyntax/1683375 to your computer and use it in GitHub Desktop.
swap two windows
(require 'cl)
(defun swap-windows ()
"If you have 2 windows, it swaps them."
(interactive)
(cond ((not (= (count-windows) 2))
(message "You need exactly 2 windows to do this."))
(t
(let* ((w1 (first (window-list)))
(w2 (second (window-list)))
(b1 (window-buffer w1))
(b2 (window-buffer w2))
(s1 (window-start w1))
(s2 (window-start w2)))
(set-window-buffer w1 b2)
(set-window-buffer w2 b1)
(set-window-start w1 s2)
(set-window-start w2 s1)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment