-
Notifications
You must be signed in to change notification settings - Fork 12
/
Default.sublime-commands
43 lines (43 loc) · 1.39 KB
/
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
39
40
41
42
43
[
{
"caption": "Preferences: Color Highlight Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/Color Highlight/Color Highlight.sublime-settings",
"default": "/*\n\tColor Highlight user settings in here override the default\n*/\n{\n\t\"user\": {\n\t\t$0\n\t}\n}\n"}
},
{
"caption": "Color Highlight: Color Highlight Current File",
"command": "color_highlight",
"args": {"action": "highlight"}
},
{
"caption": "Color Highlight: Load-Save Color Highlighting",
"command": "color_highlight_enable_load_save",
"args": {"action": "load-save"}
},
{
"caption": "Color Highlight: Save-Only Color Highlighting",
"command": "color_highlight_enable_save_only",
"args": {"action": "save-only"}
},
{
"caption": "Color Highlight: Disable Color Highlighting",
"command": "color_highlight_disable",
"args": {"action": "off"}
},
{
"caption": "Color Highlight: Enable Color Highlighting",
"command": "color_highlight_enable",
"args": {"action": "on"}
},
{
"caption": "Color Highlight: Reset",
"command": "color_highlight",
"args": {"action": "reset"}
},
{
"caption": "Color Highlight: Restore Color Scheme",
"command": "color_highlight_restore",
}
]