-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path@
62 lines (45 loc) · 971 Bytes
/
@
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# #!/usr/bin/env bash
# vim
normal mode: <esc>
visual mode: v
copy (yank): y
cut (delete): d
paste: p
insert at beginning of char: i
insert at end of char (append): a
insert at next line: o
insert at beginning of line: I
insert at end of line: A
replace char: r<char>
delete char: x
undo: u
redo: <ctrl>r
move cursor left: h
move cursor down: j
move cursor up: k
move cursor right: l
move cursor n times: <n>[h|j|k|l]
(2h, 4j, 6k, 8l)
beginning of next word: w
beginning of previous word: b
end of word: e
beginning of line: 0
end of line: $
move line up: ddkp
move line down: ddp
go to line n: :<n>
save: :w
quit: :q
save and quit: :wq
force quit: :q!
save and force quit: :wq!
# vimium
firefox: https://addons.mozilla.org/pt-BR/firefox/addon/vimium-ff/
chrome: https://chromewebstore.google.com/detail/vimium/dbepggeogbaibhgnhhndojpepiihcmeb
normal mode: <esc>
visual mode: v
insert mode: i
scroll left: h
scroll down: j
scroll up: k
scroll right: l