-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathExample.sublime-keymap
73 lines (66 loc) · 1.13 KB
/
Example.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
63
64
65
66
67
68
69
70
71
72
73
[
// Convert to Expanded Format
{
"keys": ["ctrl+alt+["],
"command": "css_format",
"args": {
"action": "expand"
}
},
// Convert to expanded format (break selectors)
{
"keys": ["ctrl+alt+b"],
"command": "css_format",
"args": {
"action": "expand-bs"
}
},
// Convert to Expanded Format (Break Selectors)
{
"keys": ["ctrl+alt+v"],
"command": "css_format",
"args": {
"action": "expand-bs"
}
},
// Convert to Compact Format
{
"keys": ["ctrl+alt+]"],
"command": "css_format",
"args": {
"action": "compact"
}
},
// Convert to Compact Format (No Spaces)
{
"keys": ["ctrl+alt+n"],
"command": "css_format",
"args": {
"action": "compact-ns"
}
},
// Convert to Compact Format (Break Selectors)
{
"keys": ["ctrl+alt+b"],
"command": "css_format",
"args": {
"action": "compact-bs"
}
},
// Convert to Compact Format (Break Selectors and No Spaces)
{
"keys": ["ctrl+alt+m"],
"command": "css_format",
"args": {
"action": "compact-bs-ns"
}
},
// Convert to Compressed Format
{
"keys": ["ctrl+alt+\\"],
"command": "css_format",
"args": {
"action": "compress"
}
}
]