-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault.sublime-commands
More file actions
43 lines (43 loc) · 957 Bytes
/
Default.sublime-commands
File metadata and controls
43 lines (43 loc) · 957 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
[
{
"caption": "Preferences: NeoCodeMap Settings",
"command": "edit_settings",
"args":
{
"base_file": "${packages}/NeoCodeMap/NeoCodeMap.sublime-settings",
"default": "{\n\t$0\n}\n"
}
},
{
"caption": "NeoCodeMap: Open Readme",
"command": "open_file",
"args":
{
"file": "${packages}/NeoCodeMap/README.md"
}
},
{
"caption": "NeoCodeMap: Toggle",
"command": "neo_code_map_toggle"
},
{
"caption": "NeoCodeMap: Close All",
"command": "neo_code_map_close_all"
},
{
"caption": "NeoCodeMap: Move Down",
"command": "neo_code_map_move",
"args":
{
"direction": "down"
}
},
{
"caption": "NeoCodeMap: Move Up",
"command": "neo_code_map_move",
"args":
{
"direction": "up"
}
}
]