forked from SublimeLinter/SublimeLinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
57 lines (56 loc) · 1.75 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
57
[
{
"caption": "SublimeLinter: Lint This View",
"command": "sublime_linter_lint"
},
{
"caption": "SublimeLinter: Open diagnostics panel",
"command": "sublime_linter_panel_toggle"
},
{
"caption": "SublimeLinter: Show All Errors", // deprecated alias
"command": "sublime_linter_panel_toggle"
},
{
"caption": "SublimeLinter: Show Line Errors",
"command": "sublime_linter_line_report"
},
{
"caption": "SublimeLinter: Goto Error",
"command": "sublime_linter_goto_error", "args":
{
"direction": "next",
"wrap": true
}
},
{
"caption": "SublimeLinter: Toggle Highlights",
"command": "sublime_linter_toggle_highlights"
// "args": {"what": ["squiggles", "phantoms"]}
},
{
"caption": "SublimeLinter: Quick Action",
"command": "sublime_linter_quick_actions",
"args": { "prefer_panel": true }
},
{
"caption": "SublimeLinter: Reload SublimeLinter and its Plugins",
"command": "sublime_linter_reload"
},
{
"caption": "Preferences: SublimeLinter Settings",
"command": "edit_settings", "args":
{
"base_file": "${packages}/SublimeLinter/SublimeLinter.sublime-settings",
"default": "// SublimeLinter Settings - User\n{\n\t// \"debug\": true,\n\t\n\t\"linters\": {\n\t\t$0\n\t}\n}\n"
}
},
{
"caption": "Preferences: SublimeLinter Key Bindings",
"command": "edit_settings", "args":
{
"base_file": "${packages}/SublimeLinter/keymaps/Default ($platform).sublime-keymap",
"default": "${packages}/User/Default ($platform).sublime-keymap"
}
}
]