-
Notifications
You must be signed in to change notification settings - Fork 24
/
Main.sublime-menu
52 lines (52 loc) · 1.62 KB
/
Main.sublime-menu
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
[
{
"caption": "Tools",
"mnemonic": "t",
"id": "tools",
"children":
[
{
"caption": "CSV",
"mnemonic": "c",
"id": "csv",
"children":
[
{
"command": "csv_set_first_row_as_header",
"caption": "Use First Row As Header"
},
{
"caption": "-"
},
{
"command": "csv_sort_asc_current_col",
"caption": "Sort Current Column (Ascending)"
},
{
"command": "csv_sort_desc_current_col",
"caption": "Sort Current Column (Descending)"
},
{
"command": "csv_sort_asc_prompt_col",
"caption": "Sort Column (Ascending)"
},
{
"command": "csv_sort_desc_prompt_col",
"caption": "Sort Column (Descending)"
},
{
"caption": "-"
},
{
"command": "csv_format",
"caption": "Format"
},
{
"command": "csv_format_with_defaults",
"caption": "Format with Default Values"
}
]
}
]
}
]