-
-
Notifications
You must be signed in to change notification settings - Fork 268
/
Copy pathDefault (Windows).sublime-keymap
42 lines (35 loc) · 1.44 KB
/
Default (Windows).sublime-keymap
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
[
// Lint this view
{ "keys": ["ctrl+k", "l"], "command": "sublime_linter_lint" },
// Show all errors
{ "keys": ["ctrl+k", "a"], "command": "sublime_linter_panel_toggle" },
// You can also trigger the line report with a keybinding:
// { "keys": ["ctrl+k", "r"], "command": "sublime_linter_line_report" }
// Goto next/previous errors from your position, in the current file:
{ "keys": ["ctrl+k", "n"], "command": "sublime_linter_goto_error",
"args": { "direction": "next" }
},
{ "keys": ["ctrl+k", "p"], "command": "sublime_linter_goto_error",
"args": { "direction": "previous" }
}
// Supported args:
// * direction: "previous" or "next"
// * count: How many errors to jump. Defaults to 1.
// * wrap: If true will jump to the top if you're on the last error
// and vice versa. Defaults to False
// You can toggle all squiggles and phantoms super-fast
// { "keys": ["ctrl+k", "ctrl+k"],
// "command": "sublime_linter_toggle_highlights"
// },
//
// This commands optionally takes a `what` arg.
// For example, to toggle only the phantoms use
// { "keys": ["ctrl+k", "ctrl+k"],
// "command": "sublime_linter_toggle_highlights",
// "args": {"what": ["phantoms"]} // or "squiggles"
// },
// To trigger a quick action
// { "keys": ["ctrl+k", "ctrl+f"],
// "command": "sublime_linter_quick_actions"
// },
]