-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-keymap
executable file
·39 lines (32 loc) · 1.4 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
[
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["ctrl+pagedown"], "command": "next_view_in_stack" },
{ "keys": ["ctrl+pageup"], "command": "prev_view_in_stack" },
{ "keys": ["ctrl+x"], "command": "clipboard_history_cut" },
{ "keys": ["ctrl+c"], "command": "clipboard_history_copy" },
{ "keys": ["ctrl+v"], "command": "clipboard_history_paste" },
{ "keys": ["ctrl+alt+v"], "command": "clipboard_history_paste" },
{ "keys": ["ctrl+shift+x"], "command": "cut" },
{ "keys": ["ctrl+shift+c"], "command": "copy" },
{ "keys": ["ctrl+shift+v"], "command": "paste" },
{ "keys": ["ctrl+alt+shift+v"], "command": "clipboard_history_paste" },
{ "keys": ["ctrl+alt+pagedown"], "command": "clipboard_history_next" },
{ "keys": ["ctrl+alt+pageup"], "command": "clipboard_history_previous" },
{ "keys": ["ctrl+shift+pageup"], "command": "clipboard_history_visualize" },
{ "keys": ["ctrl+shift+q"], "command": "example" },
{ "keys": ["ctrl+alt+q"], "command": "sort_css" },
{ "keys": ["ctrl+shift+t"], "command": "print_theme_rule"},
{ "keys": ["enter"], "command": "star_inserter"},
{
"keys": ["#"],
"command": "insert_snippet",
"args" : { "contents": "#{$0}" },
"context":[{
"key": "selector",
"operator": "equal",
"operand": "string.quoted.double.ruby",
"match_all": true
}]
}
]