-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.sublime-commands
66 lines (66 loc) · 1.55 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
65
66
[
{
"caption": "Reg Replace: Remove Trailing Spaces",
"command": "reg_replace",
"args": {"replacements": ["a1"]}
},
{
"caption": "paste multilines as one, / in line begin",
"command": "paste_multilines_as_one",
"args": {"slash_position": "begin"}
},
{
"caption": "paste multilines as one, / in line end",
"command": "paste_multilines_as_one",
"args": {"slash_position": "end"}
},
{
"caption": "paste multilines as one, no /",
"command": "paste_multilines_as_one",
"args": {"slash_position": "no"}
},
{
"caption": "remove html attrs",
"command": "remove_html_attrs",
"args": {}
},
{
"caption": "convert fields to table (seperated by comma)",
"command": "convert_fields_to_table",
"args": {"seperator": ","}
},
{
"caption": "convert fields to table (seperated by tab)",
"command": "convert_fields_to_table",
"args": {"seperator": "\t"}
},
{
"caption": "convert fields to table (seperated by vertical line)",
"command": "convert_fields_to_table",
"args": {"seperator": "|"}
},
{
"caption": "close all saved file",
"command": "close_all_saved_file"
},
{
"caption": "count duplicate lines",
"command": "count_duplicates"
},
{
"caption": "convert datetime to timestamp",
"command": "convert_datetime"
},
{
"caption": "convert timestamp to datetime",
"command": "convert_timestamp_to_datetime"
},
{
"caption": "replace duplicate lines to dash",
"command": "replace_duplines_to_dash"
},
{
"caption": "html table to text table split with vertical line",
"command": "html_table_to_text"
}
]