-
-
Notifications
You must be signed in to change notification settings - Fork 366
/
Default.sublime-commands
40 lines (40 loc) · 1.09 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
[
{
"caption": "Preferences: SublimeLint Settings – Default",
"command": "open_file", "args":
{
"file": "${packages}/sublimelint/SublimeLint.sublime-settings"
}
},
{
"caption": "Preferences: SublimeLint Settings – User",
"command": "open_file", "args":
{
"file": "${packages}/User/SublimeLint.sublime-settings"
}
},
{
"caption": "SublimeLint: Show All Errors",
"command": "sublimelint_all_errors"
},
{
"caption": "SublimeLint: Next Error",
"command": "sublimelint_next_error"
},
{
"caption": "SublimeLint: Previous Error",
"command": "sublimelint_next_error", "args": {"direction": -1}
},
{
"caption": "SublimeLint: Error Report (Open Files)",
"command": "sublimelint_report",
"args": {"on": "files"}
}
/* folders not implemented
{
"caption": "SublimeLint: Error Report (Open Files and Folders)",
"command": "sublimelint_report",
"args": {"on": "both"}
}
*/
]