-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Default.sublime-keymap
68 lines (65 loc) · 2.11 KB
/
Default.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[
// // close quick panel and goto to initial view
// {
// "keys": ["alt", "alt"],
// "command": "compass_close",
// "context": [
// { "key": "overlay_visible", "operator": "equal", "operand": true },
// { "key": "panel_has_focus", "operator": "equal", "operand": false },
// { "key": "compass" },
// ]
// },
// // close quick panel and select the highlighted view
// {
// "keys": ["ctrl", "ctrl"],
// "command": "compass_close",
// "args": { "reset": false },
// "context": [
// { "key": "overlay_visible", "operator": "equal", "operand": true },
// { "key": "panel_has_focus", "operator": "equal", "operand": false },
// { "key": "compass" },
// ]
// },
// // override next/prev view stack keybinds
// {
// "keys": ["ctrl+tab"],
// "command": "compass_show",
// "args": {
// "forward": true
// },
// "context": [
// { "key": "overlay_visible", "operator": "equal", "operand": false },
// { "key": "compass" },
// ]
// },
// {
// "keys": ["ctrl+shift+tab"],
// "command": "compass_show",
// "args": {
// "forward": false
// },
// "context": [
// { "key": "overlay_visible", "operator": "equal", "operand": false },
// { "key": "compass" },
// ]
// },
// // move up and down the quick panel even with ctrl pressed
// {
// "keys": ["ctrl+tab"],
// "command": "compass_move",
// "args": { "forward": true },
// "context": [
// { "key": "overlay_visible", "operator": "equal", "operand": true },
// { "key": "compass" },
// ]
// },
// {
// "keys": ["ctrl+shift+tab"],
// "command": "compass_move",
// "args": { "forward": false },
// "context": [
// { "key": "overlay_visible", "operator": "equal", "operand": true },
// { "key": "compass" },
// ]
// },
]