-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodefmt.sublime-commands
More file actions
32 lines (29 loc) · 814 Bytes
/
Codefmt.sublime-commands
File metadata and controls
32 lines (29 loc) · 814 Bytes
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
[
{
"caption": "Codefmt: Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/Codefmt/Codefmt.sublime-settings",
"default": "{\n\t$0\n}\n"
}
},
{
"caption": "Codefmt: Key Bindings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/Codefmt/Default.sublime-keymap",
"default": "[\n. // Codefmt\n {\n \"keys\": [\"super+s\"],\n \"command\": \"format_code_file\"\n },\n {\n \"keys\": [\"ctrl+s\"],\n \"command\": \"save\",\n \"args\": { \"async\": true }\n }\n]\n"
}
},
{
"caption": "Codefmt: Open Readme",
"command": "open_file",
"args": {
"file": "${packages}/Codefmt/README.md"
}
},
{
"caption": "Codefmt: Format File",
"command": "format_code_file"
}
]