forked from ericmartel/Sublime-Text-2-CSV-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Default.sublime-commands
46 lines (46 loc) · 1.05 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
[
{
"command": "csv_sort_by_col_asc",
"caption": "CSV: Sort by column (Ascending)"
},
{
"command": "csv_sort_by_col_desc",
"caption": "CSV: Sort by column (Descending)"
},
{
"command": "csv_insert_col",
"caption": "CSV: Insert column"
},
{
"command": "csv_delete_col",
"caption": "CSV: Delete column"
},
{
"command": "csv_select_col",
"caption": "CSV: Select column"
},
{
"command": "csv_format_expand",
"caption": "CSV: Justify columns"
},
{
"command": "csv_format_compact",
"caption": "CSV: Compact columns"
},
{
"command": "csv_delete_trailing_cols",
"caption": "CSV: Delete empty trailing columns"
},
{
"command": "csv_set_delimiter",
"caption": "CSV: Set delimiter"
},
{
"command": "csv_evaluate",
"caption": "CSV: Evaluate cells"
},
{
"command": "csv_format",
"caption": "CSV: Format using template"
}
]