How do I close all windows except the current one?
:only
The :only command closes every window in the current tab page except the one your cursor is in.
6 results for "ctrl w o"
:only
The :only command closes every window in the current tab page except the one your cursor is in.
<C-w><C-w>
The (Ctrl+w Ctrl+w) command cycles the cursor to the next window in the current tab.
<C-w>c
The c (Ctrl+w then c) command closes the current window without closing the buffer it contains.
<C-o>
The (Ctrl+o) command jumps the cursor backward through the jump list, returning you to previous cursor positions.
<C-i>
Every time you make a "jump" — using G, /, %, :tag, , or similar commands — Vim records your position in the jump list.
:set clipboard=unnamedplus
Setting clipboard=unnamedplus makes Vim's default yank and paste use the system clipboard.