Resizing windows
You can resize windows to fit your preferences. First: the <C-w> bindings for creating windows accept counts — 80<C-w>s opens a horizontal split 80 lines tall, and 80<C-w>v a vertical split 80 columns wide.
To resize windows after creating them:
- [count]<C-w>+ / [count]<C-w>- — grow/shrink the height by [count] rows.
- [count]<C-w>> / [count]<C-w>< — grow/shrink the width by [count] columns.
- [count]<C-w>_ / [count]<C-w>| — set the height/width to exactly [count]; with no count, maximize it.
- <C-w>= — write this one down! — resize all windows back to sensible defaults.
(In your local Vim, :set mouse+=a also lets you drag window borders — the embedded editor doesn’t support that yet, sorry!)
Work through the checklist — the W map stands in for <C-w> again.