-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodevim
More file actions
50 lines (49 loc) · 1.04 KB
/
codevim
File metadata and controls
50 lines (49 loc) · 1.04 KB
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
"vim.insertModeKeyBindings":[
],
"vim.normalModeKeyBindingsNonRecursive":[
{
"before":["W"],
"commands":[":w"]
},
{
"before":["Q"],
"commands":[":q"]
},
{
"before":["J"],
"after":["j","j","j","j","j"]
},
{
"before":["K"],
"after":["k","k","k","k","k"]
},
{
"before":["H"],
"after":["h","h","h","h","h","h","h","h"]
},
{
"before":["L"],
"after":["l","l","l","l","l","l","l","l"]
},
{
"before":["'","'"],
"after":["`","`"]
},
{
"before":["<C-r>"],
"after":["U"]
},
{
"before":["0"],
"after":["^"]
},
{
"before":["-"],
"after":["$"]
},
],
"vim.handleKeys":{
"<C-a>": false,
"<C-f>": false,
"<C-n>": false
}