forked from shagabutdinov/sublime-append-selection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default (Linux).sublime-keymap
55 lines (50 loc) · 1.13 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
[
{
"keys": ["alt+c"],
"command": "append_seletion",
"context": [
{"key": "setting.sublime_enhanced_keybindings", "operator": "equal", "operand": true},
]
},
{
"keys": ["alt+shift+c"],
"command": "append_seletion",
"args": {
"backward": true,
},
"context": [
{"key": "setting.sublime_enhanced_keybindings", "operator": "equal", "operand": true},
]
},
{
"keys": ["alt+ctrl+c"],
"command": "append_seletion",
"args": {
"word": true,
},
"context": [
{"key": "setting.sublime_enhanced_keybindings", "operator": "equal", "operand": true},
]
},
{
"keys": ["alt+ctrl+shift+c"],
"command": "append_seletion",
"args": {
"word": true,
"backward": true,
},
"context": [
{"key": "setting.sublime_enhanced_keybindings", "operator": "equal", "operand": true},
]
},
{
"keys": ["ctrl+shift+c"],
"command": "append_seletion",
"args": {
"repeat_last_with_skip": true,
},
"context": [
{"key": "setting.sublime_enhanced_keybindings", "operator": "equal", "operand": true},
]
},
]