-
Notifications
You must be signed in to change notification settings - Fork 10
/
Default (Linux).sublime-keymap
30 lines (24 loc) · 1.8 KB
/
Default (Linux).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
[
{ "keys": ["ctrl+shift+o"], "command": "show_sbt" },
{ "keys": ["ctrl+alt+l"], "command": "list_sbt_errors" },
{ "keys": ["ctrl+alt+n"], "command": "next_sbt_error" },
{ "keys": ["ctrl+alt+o"], "command": "show_sbt_error_output" },
{ "keys": ["ctrl+alt+h"], "command": "sbt_show_history" },
{ "keys": ["ctrl+alt+shift+h"], "command": "sbt_show_history", "args": {"editable": true} },
{ "keys": ["enter"], "command": "sbt_submit", "context": [{ "key": "in_sbt_view" }] },
{ "keys": ["ctrl+d"], "command": "sbt_eot", "context": [{ "key": "in_sbt_view" }] },
{ "keys": ["backspace"], "command": "sbt_delete_left", "context": [{ "key": "in_sbt_view" }] },
{ "keys": ["shift+backspace"], "command": "sbt_delete_left", "context": [{ "key": "in_sbt_view" }] },
{ "keys": ["ctrl+backspace"], "command": "sbt_delete_word_left", "context": [{ "key": "in_sbt_view" }] },
{ "keys": ["ctrl+delete"], "command": "sbt_delete_word_right", "context": [{ "key": "in_sbt_view" }] },
// Disable keys that can modify the output
{ "keys": ["ctrl+shift+backspace"], "command": "noop", "context": [{ "key": "in_sbt_view" }] },
{ "keys": ["ctrl+x"], "command": "noop", "context": [{ "key": "in_sbt_view" }] },
{ "keys": ["ctrl+shift+k"], "command": "noop", "context": [{ "key": "in_sbt_view" }] },
{ "keys": ["ctrl+shift+up"], "command": "noop", "context": [{ "key": "in_sbt_view" }] },
{ "keys": ["ctrl+shift+down"], "command": "noop", "context": [{ "key": "in_sbt_view" }] },
{ "keys": ["ctrl+forward_slash"], "command": "noop", "context": [{ "key": "in_sbt_view" }] },
{ "keys": ["ctrl+shift+forward_slash"], "command": "noop", "context": [{ "key": "in_sbt_view" }] },
{ "keys": ["ctrl+j"], "command": "noop", "context": [{ "key": "in_sbt_view" }] },
{ "keys": ["ctrl+shift+d"], "command": "noop", "context": [{ "key": "in_sbt_view" }] }
]