forked from SublimeLinter/SublimeLinter-for-ST2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
56 lines (56 loc) · 1.59 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
44
45
46
47
48
49
50
51
52
53
54
55
56
[
{
"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: Background Linting",
"command": "sublimelinter_lint",
"args": {"action": "on"}
},
{
"caption": "SublimeLinter: Load-Save Linting",
"command": "sublimelinter_enable_load_save",
"args": {"action": "load-save"}
},
{
"caption": "SublimeLinter: Save-Only Linting",
"command": "sublimelinter_enable_save_only",
"args": {"action": "save-only"}
},
{
"caption": "SublimeLinter: Disable Linting",
"command": "sublimelinter_disable",
"args": {"action": "off"}
},
{
"caption": "SublimeLinter: Extract Annotations",
"command": "sublimelinter_annotations",
"args": {}
},
{
"caption": "SublimeLinter: Reset",
"command": "sublimelinter_lint",
"args": {"action": "reset"}
},
{
"caption": "Preferences: SublimeLinter Settings – Default",
"command": "open_file", "args":
{
"file": "${packages}/SublimeLinter/SublimeLinter.sublime-settings"
}
},
{
"caption": "Preferences: SublimeLinter Settings – User",
"command": "open_file", "args":
{
"file": "${packages}/User/SublimeLinter.sublime-settings"
}
}
]