Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (defun my-switch-to-buffer ()
- "If there is only one window displayed, swap it with previous buffer.
- If there are two windows displayed, act like \"C-x o\"."
- (interactive)
- (if (one-window-p t)
- (switch-to-buffer (other-buffer (current-buffer) 1))
- (other-window -1)))
RAW Paste Data