-
Notifications
You must be signed in to change notification settings - Fork 130
/
CodeFormatter.sublime-commands
70 lines (70 loc) · 1.33 KB
/
CodeFormatter.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
65
66
67
68
69
70
[
{
"caption": "CodeFormatter: Format Code",
"command": "code_formatter"
},
{
"caption": "CodeFormatter: Format Open Tabs Code",
"command": "code_formatter_open_tabs"
},
{
"caption": "CodeFormatter: Format as PHP Syntax",
"command": "code_formatter",
"args": {
"syntax": "php"
}
},
{
"caption": "CodeFormatter: Format as Javascript Syntax",
"command": "code_formatter",
"args": {
"syntax": "javascript"
}
},
{
"caption": "CodeFormatter: Format as CSS Syntax",
"command": "code_formatter",
"args": {
"syntax": "css"
}
},
{
"caption": "CodeFormatter: Format as SCSS Syntax",
"command": "code_formatter",
"args": {
"syntax": "scss"
}
},
{
"caption": "CodeFormatter: Format as HTML Syntax",
"command": "code_formatter",
"args": {
"syntax": "html"
}
},
{
"caption": "CodeFormatter: Format as Python Syntax",
"command": "code_formatter",
"args": {
"syntax": "python"
}
},
{
"caption": "CodeFormatter: Format as VBScript Syntax",
"command": "code_formatter",
"args": {
"syntax": "vbscript"
}
},
{
"caption": "CodeFormatter: Show PHP Transformations",
"command": "code_formatter_show_php_transformations"
},
{
"caption": "CodeFormatter: Format as Coldfusion Syntax",
"command": "code_formatter",
"args": {
"syntax": "coldfusion"
}
}
]