1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00
Files
til/vim/go-back-to-the-previous-window.md
2019-03-18 13:00:05 -05:00

15 lines
611 B
Markdown

# Go Back To The Previous Window
When working with multiple files, you may have one or more window splits
open. You may even be moving back and forth between two in particular --
perhaps if you are iterating on a test and its implementation. You can move
back to the previous window using `Ctrl-w Ctrl-w`. This is the same as
hitting `Ctrl-w w`.
Once you've moved back to the previous window, the window you were just in
is now the previous window. That means you can keep hitting `Ctrl-w Ctrl-w`
to toggle back and forth.
See `:h ctrl-w w` for the exact command and `:h ctrl-w` for more on window
commands.