-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeyconfig.json
122 lines (119 loc) · 3.76 KB
/
keyconfig.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[
// movement
{
"keys": ["ctrl+up"],
"command": "multicommand",
"args": {
"commands": [
{
"command": "move",
"args": {
"by": "stops",
"empty_line": true,
"forward": false
}
},
{
"command": "show_at_center"
}
]
}
},
{
"keys": ["ctrl+down"],
"command": "multicommand",
"args": {
"commands": [
{
"command": "move",
"args": {
"by": "stops",
"empty_line": true,
"forward": true
}
},
{
"command": "show_at_center"
}
]
}
},
{
"keys": ["ctrl+shift+up"],
"command": "multicommand",
"args": {
"commands": [
{
"command": "move",
"args": {
"by": "stops",
"empty_line": true,
"forward": false,
"extend": true
}
},
{
"command": "show_at_center"
}
]
}
},
{
"keys": ["ctrl+shift+down"],
"command": "multicommand",
"args": {
"commands": [
{
"command": "move",
"args": {
"by": "stops",
"empty_line": true,
"forward": true,
"extend": true
}
},
{
"command": "show_at_center"
}
]
}
},
{ "keys": ["up"], "command": "multicommand", "args": {
"commands": [
{ "command": "move", "args": {"by": "lines", "forward": false } },
{ "command": "show_at_center" },
],
} },
{ "keys": ["down"], "command": "multicommand", "args": {
"commands": [
{ "command": "move", "args": {"by": "lines", "forward": true } },
{ "command": "show_at_center" },
],
} },
{ "keys": ["shift+up"], "command": "multicommand", "args": {
"commands": [
{ "command": "move", "args": {"by": "lines", "forward": false, "extend": true } },
{ "command": "show_at_center" },
],
} },
{ "keys": ["shift+down"], "command": "multicommand", "args": {
"commands": [
{ "command": "move", "args": {"by": "lines", "forward": true, "extend": true } },
{ "command": "show_at_center" },
],
} },
{ "keys": ["ctrl+alt+up"], "command": "swap_line_up" },
{ "keys": ["ctrl+alt+down"], "command": "swap_line_down" },
{ "keys": ["alt+shift+up"], "command": "swap_line_up" },
{ "keys": ["alt+shift+down"], "command": "swap_line_down" },
{ "keys": ["ctrl+e"], "command": "show_at_center" },
{ "keys": ["ctrl+k", "ctrl+c"], "command": "toggle_comment", "args": { "block": false } },
// references https://gist.github.com/Werninator/901fe95a1486687d56480f965126d5ca
{ "keys": ["f1"], "command": "open_help" },
{ "keys": ["ctrl+shift+r"], "command": "reindent" },
// override key combinations to empty commands so I don't accidentally trigger them
{ "keys": ["ctrl+shift+["], "command": "" },
{ "keys": ["ctrl+shift+]"], "command": "" },
{ "keys": ["ctrl+t"], "command": "" },
{ "keys": ["ctrl+j"], "command": "" },
]