-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDefault (Linux).sublime-keymap
57 lines (56 loc) · 1.29 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
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
[
{
"keys": ["ctrl+m","ctrl+f"],
"command": "multi_fill"
},{
"keys": ["ctrl+m","ctrl+i"],
"command": "multi_integer"
},
{
"keys": ["ctrl+alt+d"],
"command": "multi_select"
},
{
"keys": ["ctrl+alt+enter"],
"command": "multi_select_all"
},{
"keys": ["alt+up"],
"command": "multi_window_compare", "args": {"direction": "up", "sync":"false"}
},{
"keys": ["alt+down"],
"command": "multi_window_compare", "args": {"direction": "down", "sync":"false"}
},{
"keys": ["alt+shift+up"],
"command": "multi_window_compare", "args": {"direction": "up", "sync":"true"}
},{
"keys": ["alt+shift+down"],
"command": "multi_window_compare", "args": {"direction": "down", "sync":"true"}
},{
"keys": ["ctrl+alt+left"],
"command": "multi_select_windows", "args": {"direction": "left"}
},
{
"keys": ["ctrl+alt+right"],
"command": "multi_select_windows", "args": {"direction": "right"}
},
{
"keys": ["ctrl+alt+shift+left"],
"command": "multi_move_window", "args": {"direction": "left"}
},
{
"keys": ["ctrl+alt+shift+right"],
"command": "multi_move_window", "args": {"direction": "right"}
},
{
"keys": ["ctrl+alt+c"],
"command": "close_other_tabs"
},
{
"keys": ["ctrl+alt+w"],
"command": "close_all"
},
{
"keys": ["alt+`"],
"command": "multi_select_last"
}
]