Vim/Neovim
Windows & Tabs Commands
Work with multiple views in Vim. Learn window splitting, navigation, resizing, and tab management for efficient multi-file workflows.
10 commands
Pro Tips
Use ':split' (or Ctrl-w s) for horizontal split, ':vsplit' (or Ctrl-w v) for vertical split.
Navigate between windows with Ctrl-w followed by h/j/k/l, or use Ctrl-w w to cycle through windows.
Resize windows with Ctrl-w +/- (height) or Ctrl-w </> (width), or use Ctrl-w = to equalize.
Common Mistakes
Closing a window (Ctrl-w c) doesn't close the buffer - use ':bd' to delete the buffer itself.