-
Notifications
You must be signed in to change notification settings - Fork 27
/
Default.sublime-commands
64 lines (58 loc) · 1.13 KB
/
Default.sublime-commands
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
[
// Convert to Expanded Format
{
"caption": "Format CSS: Expanded",
"command": "css_format",
"args": {
"action": "expand"
}
},
// Convert to Expanded Format (Break Selectors)
{
"caption": "Format CSS: Expanded (Break Selectors)",
"command": "css_format",
"args": {
"action": "expand-bs"
}
},
// Convert to Compact Format
{
"caption": "Format CSS: Compact",
"command": "css_format",
"args": {
"action": "compact"
}
},
// Convert to Compact Format (No Spaces)
{
"caption": "Format CSS: Compact (No Spaces)",
"command": "css_format",
"args": {
"action": "compact-ns"
}
},
// Convert to Compact Format (Break Selectors)
{
"caption": "Format CSS: Compact (Break Selectors)",
"command": "css_format",
"args": {
"action": "compact-bs"
}
},
// Convert to Compact Format (Break Selectors and No Spaces)
{
"caption": "Format CSS: Compact (Break Selectors, No Spaces)",
"command": "css_format",
"args": {
"action": "compact-bs-ns"
}
},
// Convert to Compressed Format
{
"caption": "Format CSS: Compressed",
"command": "css_format",
"args": {
"action": "compress"
}
}
]