-
Notifications
You must be signed in to change notification settings - Fork 4
/
Default.sublime-commands
38 lines (38 loc) · 1005 Bytes
/
Default.sublime-commands
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
[
{
"caption" : "Manpage: Open manual page",
"command" : "manpage"
},
{
"caption" : "Manpage: Open manual page for word under cursor",
"command" : "find_manpage_from_selection"
},
{
"caption" : "Preferences: SublimeManpage Settings - Default",
"command": "open_file", "args":
{
"file": "${packages}/SublimeManpage/SublimeManpage.sublime-settings"
}
},
{
"caption" : "Preferences: SublimeManpage Settings - User",
"command": "open_file", "args":
{
"file": "${packages}/User/SublimeManpage.sublime-settings"
}
},
{
"caption" : "SublimeManpage - Enable exact match",
"command" : "exact_match_settings", "args":
{
"mode" : true
}
},
{
"caption" : "SublimeManpage - Disable exact match",
"command" : "exact_match_settings", "args":
{
"mode" : false
}
}
]