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

How do you open a new file in a vertical split?

Answer

:vsplit filename

Explanation

Use :vsplit filename or :vsp filename to open a file in a new vertical split to the left of the current window.

Next

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