forked from SublimeLinter/SublimeLinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.sublime-commands
48 lines (46 loc) · 1.36 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
[
{
"caption": "SublimeLinter: Lint This View",
"command": "sublime_linter_lint"
},
{
"caption": "SublimeLinter: Show All Errors",
"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"
},
{
"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$0\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"
}
}
]