forked from facelessuser/RegReplace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
executable file
·48 lines (46 loc) · 1.58 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
[
// Clear all find highlights
{
"caption": "Reg Replace: Clear Highlights",
"command": "reg_replace",
"args": {"clear": true}
},
// Example commands.
// {
// "caption": "Reg Replace: HTML5 Remove Deprecated Type Attr",
// "command": "reg_replace",
// "args": {"replacements": ["html5_remove_deprecated_type_attr"]}
// },
// {
// "caption": "Reg Replace: Remove Trailing Spaces",
// "command": "reg_replace",
// "args": {"replacements": ["remove_trailing_spaces"]}
// },
// // Chained replacements in one command
// {
// "caption": "Reg Replace: Remove HTML Comments and Trailing Spaces",
// "command": "reg_replace",
// "args": {"replacements": ["remove_html_comments", "remove_trailing_spaces"]}
// },
// Preferences
{
"caption": "Preferences: Reg Replace Settings – Default",
"command": "open_file",
"args": { "file": "${packages}/RegReplace/reg_replace.sublime-settings" }
},
{
"caption": "Preferences: Reg Replace Settings – User",
"command": "open_file",
"args": { "file": "${packages}/User/reg_replace.sublime-settings" }
},
{
"caption": "Preferences: Reg Replace Commands – Default",
"command": "open_file",
"args": { "file": "${packages}/RegReplace/Default.sublime-commands" }
},
{
"caption": "Preferences: Reg Replace Commands – User",
"command": "open_file",
"args": { "file": "${packages}/User/Default.sublime-commands" }
}
]