forked from grancalavera/Sublime-Settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault (OSX).sublime-keymap
61 lines (59 loc) · 1.44 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
[
//--------------------------------------------------------------------------
//
// Sublime
//
//--------------------------------------------------------------------------
{ "keys": ["super+ctrl+alt+d"], "command": "toggle_side_bar" },
{ "keys": ["super+shift+backspace"], "command": "delete_trailing_spaces" },
{ "keys": ["super+shift+w"], "command": "close_all" },
//--------------------------------------------------------------------------
//
// Emmet: Remember to comment the default configuration in Emmet
// (or find the proper way to override Emmet settings)
// see: https://github.com/sergeche/emmet-sublime#overriding-keyboard-shortcuts
//
//--------------------------------------------------------------------------
{
"keys": [
"ctrl+]"
],
"args": {
"action": "match_pair_outward"
},
"command": "run_emmet_action",
"context": [
{
"key": "emmet_action_enabled.match_pair_outward"
}
]
},
{
"keys": [
"ctrl+["
],
"args": {
"action": "match_pair_inward"
},
"command": "run_emmet_action",
"context": [
{
"key": "emmet_action_enabled.match_pair_inward"
}
]
},
{
"keys": [
"ctrl+x"
],
"args": {
"action": "expand_abbreviation"
},
"command": "run_emmet_action",
"context": [
{
"key": "emmet_action_enabled.expand_abbreviation"
}
]
}
]