forked from SublimeLinter/SublimeLinter-for-ST2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.sublime-commands
37 lines (37 loc) · 1.03 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
[
{
"caption": "SublimeLinter: Lint Current File",
"command": "sublimelinter_lint",
"args": {"action": "lint"}
},
{
"caption": "SublimeLinter: Show Error List",
"command": "sublimelinter_show_errors",
"args": {"action": "lint", "show_popup": true}
},
{
"caption": "SublimeLinter: Enable Background Linting",
"command": "sublimelinter_lint",
"args": {"action": "on"}
},
{
"caption": "SublimeLinter: Enable Load-Save Linting",
"command": "sublimelinter_enable_load_save",
"args": {"action": "load-save"}
},
{
"caption": "SublimeLinter: Disable Background Linting",
"command": "sublimelinter_disable",
"args": {"action": "off"}
},
{
"caption": "SublimeLinter: Extract Annotations",
"command": "sublimelinter_annotations",
"args": {}
},
{
"caption": "SublimeLinter: Reset",
"command": "sublimelinter_lint",
"args": {"action": "reset"}
}
]