other-window advances me to the next window in the current frame, but I also want a way to move back to the previous window.

Emacs has next-buffer and previous-buffer, but no analogous interactive functions for window navigation. Just other-window.

link|improve this question

14% accept rate
NOTE: frame and window are different beasts in Emacs terminology. Please, replace frame by window in your question to avoid confusion. – J.F. Sebastian Oct 1 '08 at 0:00
frame/window confusion fixed. – phils Feb 25 '11 at 12:46
feedback

6 Answers

up vote 18 down vote accepted

Provide a negative argument with "C-u -" ("Control+U" then "minus")

  • Move to previous window: C-u - C-x o
  • Move to previous frame: C-u - C-x 5 o

From code, (other-window -1) or (other-frame -1) will do the same thing.

Check out the help for the key you want to reverse (e.g. C-h k C-x o to show help for C-x o) and if it says "A negative argument..." you know you can use "C-u -".

link|improve this answer
A bit strange but when I have a layout 2x3 windows with windows 1-6 using C-x o moves from 3 to 4, but in 4 using C-u - C-x o moves from 4 to 2. What would move me from 4 to 3 ? – Zitrax Aug 5 '10 at 12:18
feedback

Put this in your .emacs, and bind it to whatever key you like

(defun back-window ()
  (interactive)
  (other-window -1))
link|improve this answer
feedback

Different from what you asked for, but the windmove package lets you move between windows according to their relative screen locations, which can be much easier than repeatedly doing C-x o.

link|improve this answer
feedback

This is an old post, but I just wondered the same. It seems there now is a function for this in Emacs: previous-multiframe-window.

I have it bound to C-x O, as in uppercase letter o. Now I just throw in shift when I want to go backwards.

(global-set-key (kbd "C-x O") 'previous-multiframe-window)

link|improve this answer
One issue with this is that if you have multiple frames this will cycle between them all, when you might want to stay within the current frame only. – Malvineous Jan 15 at 8:03
feedback

Instead of C-u -, you can also give a negative prefix argument with just M-- (Meta-Minus) , i.e. switch to previous window with M-- C-x o.

link|improve this answer
feedback

A slightly less annoying shortcut available by default isC-- C-x o. That way you don't have to switch between Meta and Control while typing the prefixes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.