-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimSheet.json
82 lines (82 loc) · 2.33 KB
/
vimSheet.json
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "Vim",
"description": "Vim Cheatsheet with basic commands to get around",
"author": "Kendall Molas",
"email": "kmolas@nyit.edu",
"repository": "https://github.com/kendall-io/Cheatsheet",
"version": "0.1",
"sections": {
"Cursor Movement": {
"Move Cursor Left": {
"description": "Move cursor to the left",
"code": "h"
},
"Move Cursor Down": {
"description": "Move cursor down",
"code": "j"
},
"Move Cursor Up": {
"description": "Move cursor up",
"code": "k"
},
"Move to the top of the screen": {
"description": "Move cursor to the top of page",
"code": "H"
},
"Move to the middle of the screen": {
"description": "Move cursor to the middle of the screen",
"code": "M"
},
"Move to the bottom of the screen": {
"description": "Move cursor to the bottom of the page",
"code": "L"
},
"Jump forwards to start of word": {
"description": "Jumps to the start of word, cannot contain punctuation",
"code": "w"
},
"Jump forwards to start of word": {
"description": "Jumps to the start of word, can contain punctuation",
"code": "W"
},
"Jumps forward to end of word": {
"description": "Jumps to end of the word, doesn't ignore punctuation",
"code": ""
},
"Jumps ": {
"description": "",
"code": ""
},
"": {
"description": "",
"code": ""
},
"": {
"description": "",
"code": ""
},
"": {
"description": "",
"code": ""
},
"": {
"description": "",
"code": ""
},
"": {
"description": "",
"code": ""
},
},
"Section 2": {
"Example 1": {
"description": "Example 1 description",
"code": "EXAMPLE 1 CODE"
},
"Example 2": {
"description": "Example 2 description",
"code": "EXAMPLE 2 CODE"
}
}
}
}