change vifm colors
[dotfiles_afify.git] / .man / vim_man.txt
blob6d5c29946fdb8174c66d16e416990afd079d75e2
1 ===================================
2 (esc)   Enter command mode
4 NAVIGATION :-
5 -------------
6 h       Move one space left
7 j       Move one line down
8 k       Move one line up
9 l       Move one space right
10 G       Go to last line
11 1G      Go to the first line (etc)
12 :7      Go to the 7th line (etc)
13 /text   Go to "text"
14 n       Repeat last search
15 w       Go to next word
16 0       Go to beginning of line
17 $       Go to end of line
19 EDITING :-
20 ----------
21 i       Insert
22 I       Insert at the beginnig of line
23 a       Append
24 A       Append to end of line
25 x       Delete character at cursor
26 o       Open new line below the cursor
27 O       Open new line below the cursor
28 p       past after cursor
29 P       Paste before cursor
30 dd      Delete line
31 dw      Delete word
32 dt      Delete to character
33 cw      Change word
34 ct      Change to character
35 u       Undo last change
36 .       Repeat last change
38 SAVING & QUITTING :-
39 --------------------
40 :w      Save file
41 :w abc  Save as "abc"
42 :q      Quit
43 :q!     Quit without saving
44 :wq     Save and quit
46 FIND & REPLACE :-
47 -----------------
48 :%s/findThatWord/ReplaceItWithThatOne/g
50 ===================================