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

How do you open a buffer in a vertical split?

Answer

:vert sb 3

Explanation

Use :vert sb 3 to open buffer 3 in a vertical split. The :vert modifier makes any split command use a vertical orientation.

Next

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