-
Notifications
You must be signed in to change notification settings - Fork 82
/
Default (Windows).sublime-keymap
53 lines (51 loc) · 1.92 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
43
44
45
46
47
48
49
50
51
52
53
[
{ "keys": ["ctrl+shift+c"], "command": "terminus_copy", "context": [{"key": "terminus_view"}] },
{ "keys": ["ctrl+shift+v"], "command": "terminus_paste", "context": [{"key": "terminus_view"}] },
{ "keys": ["ctrl+shift+w"], "command": "terminus_close", "context": [{"key": "terminus_view"}] },
{ "keys": ["ctrl+c"], "command": "terminus_copy",
"context":
[
{ "key": "terminus_view" },
{ "key": "terminus_view.natural_keyboard" },
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true }
]
},
{ "keys": ["ctrl+v"], "command": "terminus_paste",
"context":
[
{ "key": "terminus_view" },
{ "key": "terminus_view.natural_keyboard" }
]
},
{ "keys": ["ctrl+alt+v"], "command": "terminus_keypress",
"args": {"key": "v", "ctrl": true},
"context":
[
{ "key": "terminus_view" },
{ "key": "terminus_view.natural_keyboard" }
]
},
{ "keys": ["ctrl+pagedown"], "command": "next_view",
"context":
[
{ "key": "terminus_view" },
{ "key": "terminus_view.natural_keyboard" }
]
},
{ "keys": ["ctrl+pageup"], "command": "prev_view",
"context":
[
{ "key": "terminus_view" },
{ "key": "terminus_view.natural_keyboard" }
]
},
{ "keys": ["ctrl+backspace"], "command": "terminus_delete_word", "args": {"forward": false}, "context": [{"key": "terminus_view"}] },
{ "keys": ["ctrl+delete"], "command": "terminus_delete_word", "args": {"forward": true}, "context": [{"key": "terminus_view"}] },
{ "keys": ["ctrl+,"], "command": "edit_settings",
"args": {
"base_file": "${packages}/Terminus/Terminus.sublime-settings",
"default": "{\n\t$0\n}\n"
},
"context": [{"key": "terminus_view"}]
}
]