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

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

Answer

:sb 3

Explanation

Use :sb (sbuffer) followed by the buffer number to open that buffer in a new horizontal split. :sb main works with partial names too.

Next

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