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

How do you split the current window vertically?

Answer

<C-w>v

Explanation

Press <C-w>v or use :vsplit to create a vertical split showing the same buffer. The new window appears to the left.

Next

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