1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
" Example Vim File for Supported Features

" Navigation (gg, G, h, j, k, l, 0, $)
The quick brown fox
jumps over the lazy dog
The quick brown fox
jumps over the lazy dog
The quick brown fox
jumps over the lazy dog

" Deletion (x, dd, 2dd)
This line will be deleted with 'dd'
And this one with '2dd'

" Find/To (f, t)
Use 'f' to move to a character
Use 't' to move just before a character

" Visual Mode and Block Deletion
Select and delete parts of this sentence

" Insert Mode (i) and Backspace
You can insert text here and use Backspace to remove it
1:1