vimtricks.wiki Concise Vim tricks, one at a time.

How do you move between windows in Vim?

Answer

<C-w>hjkl

Explanation

Use <C-w> followed by a direction key: h (left), j (down), k (up), l (right) to move focus between split windows.

Next

How do I visually select a double-quoted string including the quotes themselves?