In Emacs, C-x o takes me to the next window.
What keyboard macro takes me to the previous window in Emacs?
|
In Emacs, C-x o takes me to the next window. What keyboard macro takes me to the previous window in Emacs? |
||||
|
|
|
That'd be C-- C-x o In other words, C-x o with an argument of -1. You can specify how many windows to move by inserting a numeric argument between C-u and the command, as in C-u 2 C-x o. (C-- is a shortcut for C-u - 1) |
||||
|
|
|
You might also want to try using windmove which lets you navigate to the window of your choice based on geometry. I have the following in my .emacs file to change windows using C-x arrow-key.
|
|||||||||||
|
|
Personally I prefer to use To select a different window, use Ctrl-x, Ctrl-j n Where n is the number of the window, the modeline of each window shows it's number, as shown in the screenshot.
Just download window-number.el, place it in your emacs load-path and use the following in your
There's another similar mode called
|
|||||||||||
|
|
If you work with multiple emacs windows (>3) a lot and you will want to save some keystrokes add this to your init file and you'll be better off:
Now just cycle quickly thru the windows with M-o |
|||
|
|
|
Base on idea from @Nate but slightly modified to support backwards cycling between windows
|
|||
|
|
|
Just to add to @Nate, @aspirin and @Troydm's answer I find this to be a very helpful addition if you decide to bind the windmove commands to whatever key combination you choose:
With the default configuration you will get an error when you get to attempt to move to a window that doesn't exist which becomes kind of annoying after a while. However when windmove-wrap-around is set then attempting to move off the bottom of the frame for example will instead select the topmost window in the frame. This may be a more intuitive behaviour for you. |
|||
|
|
|
There is already a package that lets you switch windows by using M-. check this website. Add this to your init file:
|
||||
|
|