forked from SublimeLinter/SublimeLinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Context.sublime-menu.template
82 lines (82 loc) · 2.45 KB
/
Context.sublime-menu.template
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[
{
"id": "sublimelinter",
"caption": "SublimeLinter",
"children":
[
$menus,
{
"caption": "Choose Gutter Theme...",
"command": "sublimelinter_choose_gutter_theme"
},
{
"caption": "Toggle Linter...",
"command": "sublimelinter_toggle_linter", "args":
{
"which": "all"
}
},
{
"caption": "-"
},
{
"caption": "Lint This View",
"command": "sublimelinter_lint"
},
{
"caption": "Next Error",
"command": "sublimelinter_goto_error", "args": {"direction": "next"}
},
{
"caption": "Previous Error",
"command": "sublimelinter_goto_error", "args": {"direction": "previous"}
},
{
"caption": "Show All Errors",
"command": "sublimelinter_show_all_errors"
},
{
"caption": "Make Warnings Passive",
"command": "sublimelinter_toggle_setting", "args":
{
"setting": "passive_warnings",
"checked": true
}
},
{
"caption": "Show Errors on Save",
"command": "sublimelinter_toggle_setting", "args":
{
"setting": "show_errors_on_save",
"checked": true
}
},
{
"caption": "-"
},
{
"caption": "Open User Settings",
"command": "open_file", "args":
{
"file": "${packages}/User/SublimeLinter.sublime-settings"
}
},
{
"caption": "Debug Mode",
"command": "sublimelinter_toggle_setting", "args":
{
"setting": "debug",
"checked": true
}
},
{
"caption": "Clear Color Scheme Folder",
"command": "sublimelinter_clear_color_scheme_folder"
},
{
"caption": "Clear Caches",
"command": "sublimelinter_clear_caches"
},
]
}
]