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

How do you split the current window horizontally?

Answer

<C-w>s

Explanation

Press <C-w>s or use :split to create a horizontal split showing the same buffer. The new window appears above the current one.

Next

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