forked from jonlabelle/Trimmer
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
58 lines (58 loc) · 1.18 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
[
{
"caption": "Trimmer: Trim trailing whitespace.",
"command": "trimmer"
},
{
"caption": "Trimmer: Trim leading whitespace.",
"command": "trim_leading_whitespace"
},
{
"caption": "Trimmer: Trim leading AND trailing whitespace.",
"command": "trim_leading_trailing_whitespace"
},
{
"caption": "Trimmer: Trim selections.",
"command": "trim_selections"
},
{
"caption": "Trimmer: Delete empty lines.",
"command": "delete_empty_lines"
},
{
"caption": "Trimmer: Collapse lines.",
"command": "collapse_lines"
},
{
"caption": "Trimmer: Collapse spaces.",
"command": "collapse_spaces"
},
{
"caption": "Trimmer: Trim file edges.",
"command": "trim_edges"
},
{
"caption": "Trimmer: Remove blank spaces.",
"command": "remove_blank_spaces"
},
{
"caption": "Trimmer: Normalize spaces.",
"command": "normalize_spaces"
},
{
"caption": "Trimmer: Replace smart characters.",
"command": "replace_smart_characters"
},
{
"caption": "Trimmer: Tokenize string.",
"command": "tokenize_string"
},
{
"caption": "Trimmer: Delete empty tags.",
"command": "delete_empty_tags"
},
{
"caption": "Trimmer: Remove comments.",
"command": "remove_comments"
}
]