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

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

Answer

:split filename

Explanation

Use :split filename or :sp filename to open a file in a new horizontal split. The new window appears above the current one.

Next

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