-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDataWrangler.sublime-commands
42 lines (42 loc) · 1.18 KB
/
DataWrangler.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
[
{
"command": "line_freq",
"caption": "Data Wrangler: Write word/line frequencies to a new tab"
},
{
"command": "flatten_list_of_lists",
"caption": "Data Wrangler: Flatten list of lists"
},
{
"command": "group_list_of_lists",
"caption": "Data Wrangler: Group list of lists"
},
{
"command": "align_columns",
"caption": "Data Wrangler: Resize/align all columns so there's no vertical overlap"
},
{
"command": "delete_columns",
"caption": "Data Wrangler: Delete all columns that contain cursor"
},
{
"command": "isolate_columns",
"caption": "Data Wrangler: Isolate all columns that contain cursor"
},
{
"command": "word_split",
"caption": "Data Wrangler: Split lines into words"
},
{
"command": "remove_stopwords",
"caption": "Data Wrangler: Remove stopwords"
},
{
"command": "remove_separator_only_rows",
"caption": "Data Wrangler: Remove lines that only contain separators"
},
{
"command": "all_pairs",
"caption": "Data Wrangler: Generate all pairs for lines"
}
]