forked from SublimeLinter/SublimeLinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.sublime-commands
219 lines (210 loc) · 5.92 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
[
{
"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"
}
},
{
"caption": "Preferences: SublimeLinter Key Bindings – Default",
"command": "open_file", "args":
{
"file": "${packages}/SublimeLinter/Default (OSX).sublime-keymap",
"platform": "OSX"
}
},
{
"caption": "Preferences: SublimeLinter Key Bindings – User",
"command": "open_file", "args":
{
"file": "${packages}/User/Default (OSX).sublime-keymap",
"platform": "OSX"
}
},
{
"caption": "Preferences: SublimeLinter Key Bindings – Default",
"command": "open_file", "args":
{
"file": "${packages}/SublimeLinter/Default (Linux).sublime-keymap",
"platform": "Linux"
}
},
{
"caption": "Preferences: SublimeLinter Key Bindings – User",
"command": "open_file", "args":
{
"file": "${packages}/User/Default (Linux).sublime-keymap",
"platform": "Linux"
}
},
{
"caption": "Preferences: SublimeLinter Key Bindings – Default",
"command": "open_file", "args":
{
"file": "${packages}/SublimeLinter/Default (Windows).sublime-keymap",
"platform": "Windows"
}
},
{
"caption": "Preferences: SublimeLinter Key Bindings – User",
"command": "open_file", "args":
{
"file": "${packages}/User/Default (Windows).sublime-keymap",
"platform": "Windows"
}
},
{
"caption": "SublimeLinter: Choose Lint Mode",
"command": "sublimelinter_choose_lint_mode"
},
{
"caption": "SublimeLinter: Choose Mark Style",
"command": "sublimelinter_choose_mark_style"
},
{
"caption": "SublimeLinter: Choose Gutter Theme",
"command": "sublimelinter_choose_gutter_theme"
},
{
"caption": "SublimeLinter: Lint This View",
"command": "sublimelinter_lint"
},
{
"caption": "SublimeLinter: Next Error",
"command": "sublimelinter_goto_error", "args": {"direction": "next"}
},
{
"caption": "SublimeLinter: Previous Error",
"command": "sublimelinter_goto_error", "args": {"direction": "previous"}
},
{
"caption": "SublimeLinter: Show All Errors",
"command": "sublimelinter_show_all_errors"
},
{
"caption": "SublimeLinter: Make Warnings Passive",
"command": "sublimelinter_toggle_setting", "args":
{
"setting": "passive_warnings",
"value": true
}
},
{
"caption": "SublimeLinter: Don't Make Warnings Passive",
"command": "sublimelinter_toggle_setting", "args":
{
"setting": "passive_warnings",
"value": false
}
},
{
"caption": "SublimeLinter: Show Errors on Save",
"command": "sublimelinter_toggle_setting", "args":
{
"setting": "show_errors_on_save",
"value": true
}
},
{
"caption": "SublimeLinter: Don’t Show Errors on Save",
"command": "sublimelinter_toggle_setting", "args":
{
"setting": "show_errors_on_save",
"value": false
}
},
{
"caption": "SublimeLinter: No Column Highlights Entire Line",
"command": "sublimelinter_toggle_setting", "args":
{
"setting": "no_column_highlights_line",
"value": true
}
},
{
"caption": "SublimeLinter: No Column Only Marks Gutter",
"command": "sublimelinter_toggle_setting", "args":
{
"setting": "no_column_highlights_line",
"value": false
}
},
{
"caption": "SublimeLinter: Enable Linting",
"command": "sublimelinter_toggle_setting", "args":
{
"setting": "@disable",
"value": null
}
},
{
"caption": "SublimeLinter: Disable Linting",
"command": "sublimelinter_toggle_setting", "args":
{
"setting": "@disable",
"value": true
}
},
{
"caption": "SublimeLinter: Enable Debug Mode",
"command": "sublimelinter_toggle_setting", "args":
{
"setting": "debug",
"value": true
}
},
{
"caption": "SublimeLinter: Disable Debug Mode",
"command": "sublimelinter_toggle_setting", "args":
{
"setting": "debug",
"value": false
}
},
{
"caption": "SublimeLinter: Toggle Linter",
"command": "sublimelinter_toggle_linter", "args":
{
"which": "all"
}
},
{
"caption": "SublimeLinter: Enable Linter",
"command": "sublimelinter_toggle_linter", "args":
{
"which": "disabled"
}
},
{
"caption": "SublimeLinter: Disable Linter",
"command": "sublimelinter_toggle_linter", "args":
{
"which": "enabled"
}
},
{
"caption": "SublimeLinter: Create Linter Plugin",
"command": "sublimelinter_create_linter_plugin"
},
{
"caption": "SublimeLinter: Clear Color Scheme Folder",
"command": "sublimelinter_clear_color_scheme_folder"
},
{
"caption": "SublimeLinter: Clear Caches",
"command": "sublimelinter_clear_caches"
},
{
"caption": "SublimeLinter: Report (Open Files)",
"command": "sublimelinter_report",
"args": {"on": "files"}
}
]