-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-keymap
39 lines (38 loc) · 998 Bytes
/
Default.sublime-keymap
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
// some bindings are in OS-specific files
[
{
"keys": ["r"],
"command": "opened_files",
"context": [
{ "key": "selector", "operator": "equal", "operand": "text.opened_files" },
]
},
{
"keys": ["enter"],
"command": "opened_files_act",
"context": [
{ "key": "selector", "operator": "equal", "operand": "text.opened_files" },
]
},
{
"keys": ["right"],
"command": "opened_files_act", "args": {"act": "unfold"},
"context": [
{ "key": "selector", "operator": "equal", "operand": "text.opened_files" },
]
},
{
"keys": ["left"],
"command": "opened_files_act", "args": {"act": "fold"},
"context": [
{ "key": "selector", "operator": "equal", "operand": "text.opened_files" },
]
},
{
"keys": ["o"],
"command": "opened_files_open_external",
"context": [
{ "key": "selector", "operator": "equal", "operand": "text.opened_files" },
]
},
]