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

How do you set a fixed height for a window?

Answer

:resize 10

Explanation

Use :resize 10 or :res 10 to set the window height to 10 lines. Combine with set winfixheight to prevent automatic resizing.

Next

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