-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDefault (OSX).sublime-keymap
62 lines (60 loc) · 2.83 KB
/
Default (OSX).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
[
{ "keys": ["ctrl+super+up"], "command": "smart_swap_line_up" , "context":
[
{ "key": "slm_settings.smart_swap_up", "operator": "equal", "operand": true },
]
},
{ "keys": ["ctrl+super+down"], "command": "smart_swap_line_down" , "context":
[
{ "key": "slm_settings.smart_swap_down", "operator": "equal", "operand": true },
]
},
{ "keys": ["ctrl+super+up"], "command": "swap_line_above", "context":
[
{ "key": "slm_settings.swap_above", "operator": "equal", "operand": true },
{ "key": "selection_in_first_line", "operator": "equal", "operand": true }
]
},
{ "keys": ["ctrl+super+down"], "command": "swap_line_below", "context":
[
{ "key": "slm_settings.swap_below", "operator": "equal", "operand": true },
{ "key": "selection_in_last_line", "operator": "equal", "operand": true }
]
},
{ "keys": ["ctrl+super+down"], "command": "unswap_line_above", "context":
[
{ "key": "slm_settings.undo_swap_above", "operator": "equal", "operand": true },
{ "key": "last_modifying_command", "operator": "equal", "operand" : "swap_line_above" },
{ "key": "selection_in_first_line", "operator": "equal", "operand": true },
{ "key": "selection_in_last_line", "operator": "equal", "operand": false }
]
},
{ "keys": ["ctrl+super+down"], "command": "unswap_line_above", "context":
[
{ "key": "slm_settings.undo_swap_above", "operator": "equal", "operand": true },
{ "key": "last_modifying_command", "operator": "equal", "operand" : "unswap_line_above" },
{ "key": "selection_in_first_line", "operator": "equal", "operand": true },
{ "key": "selection_in_last_line", "operator": "equal", "operand": false }
]
},
{ "keys": ["ctrl+super+up"], "command": "unswap_line_below", "context":
[
{ "key": "slm_settings.undo_swap_below", "operator": "equal", "operand": true },
{ "key": "last_modifying_command", "operator": "equal", "operand" : "swap_line_below" },
{ "key": "selection_in_last_line", "operator": "equal", "operand": true },
{ "key": "selection_in_first_line", "operator": "equal", "operand": false }
]
},
{ "keys": ["ctrl+super+up"], "command": "unswap_line_below", "context":
[
{ "key": "slm_settings.undo_swap_below", "operator": "equal", "operand": true },
{ "key": "last_modifying_command", "operator": "equal", "operand" : "unswap_line_below" },
{ "key": "selection_in_last_line", "operator": "equal", "operand": true },
{ "key": "selection_in_first_line", "operator": "equal", "operand": false },
]
},
{ "keys": ["ctrl+alt+super+up"], "command": "separate_text_up" },
{ "keys": ["ctrl+alt+super+down"], "command": "separate_text_down" },
{ "keys": ["ctrl+alt+super+right"], "command": "repel_text" },
{ "keys": ["ctrl+alt+super+left"], "command": "attract_text" },
]