Quick Start

Local mode supports the following navigation keys of Vim.

Shortcut Action
h Move left
j Move down
k Move up
l Move right
0 Move to the begining of the line
$ Move to the end of the line
^ Move to the first non-blank character of the line
w Move to next word
W Move to next blank delimited word
b Move to the beginning of the word
B Move to the beginning of the blank delimted word
e Move to the end of the word
E Move to the end of the blank delimited word
1G Move to the first line of the session
nG Move to nth line of the session
G Move to the last line of the session
gg move to the beginning of the session
ge Move to the end of the previous word
gE Move to the end of the previous Blank delimited word
- Move to the previous non-blank sentence
+ Move to the next non-blank sentence
( Move to the previous sentence
) Move to the next sentence
{ Move to the previous paragraph
} Move to the next paragraph

Navigation Keys

...

Quick Start

Local mode supports the following scrolling keys of Vim.

Shortcut Action
H Move to the top line of screen
M Move to the center line of screen
L Move to the bottom line of screen
zt Move the cursor line to the top of screen
zz Move the cursor line to the center of screen
zb Move the cursor line to the bottom of screen
Ctrl+e Scroll down one line
Ctrl+y Scroll up one line
Ctrl+d Scroll down half a screen
Ctrl+u Scroll up half a screen
Ctrl+b Scroll up a screen

Scrolling Keys

...

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

...

0%