Quick Start

Local mode supports the following searching keys of Vim.

Shortcut Action
/ Open the search bar
fc Move to the next c on the current line after the cursor
Fc Move to the next c on the current line before the cursor
tc Move to before the next c on the current line after the cursor
Tc Move to before the next c on the current line before the cursor
; Repeat last f, t, F or T
, Repeat last f, t, F or T in opposite direction

Searching Keys

...

Quick Start

Local mode supports the following folding keys of Vim.

Shortcut Action
zj Move down to top of the next fold
zk Move up to bottom of the previous fold
za Toggle the current fold
zo Open the current fold
zc Close the current fold
zO Open the current fold recursively
zC Close the current fold recursively
zm Close all folds
zM Close all folds
zr Open all folds
zR Open all folds

Folding Keys

...

Quick Start

In local mode, one can select text with v{motion} or V{motion}, where {motion} is a navigation motion or searching motion. For example, vw selects to the beginning of the next word. Other helpful copy commands include:

  • v$
    Select to the end of the current line without the newline character
  • vw
    Select to the beginning of the next word
  • vtx
    Select from the current cursor position up to and before the character x
  • vfx
    Select from the current cursor position up to and including the character x
Shortcut Action
v{motion} Select text
V{motion} Select text

Selection Keys

...

Quick Start

In local mode, one can copy with y{motion}, where {motion} is a navigation motion or searching motion. For example, yw copies to the beginning of the next word. Other helpful copy commands include:

  • yy
    Copy the current line, including the newline character
  • y$
    Copy to the end of the current line without the newline character
  • yw
    Copy to the beginning of the next word
  • ytx
    Copy from the current cursor position up to and before the character x
  • yfx
    Copy from the current cursor position up to and including the character x
Shortcut Action
yy Copy the current selection or line
p Paste and switch back to remote mode
P Paste and stay in local mode
xy{motion} Copy into the register x
xp Paste contents of the register x and switch to remote mode
xP Paste contents of the register x and stay in local mode
“+y{motion} Copy into the system clipboard register
“+p Paste from the system clipboard register and switch to remote mode
“+P Paste from the system clipboard register and stay in local mode

Copy And Paste Keys

...

0%