-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathContext.sublime-menu
43 lines (43 loc) · 1.06 KB
/
Context.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
[
{"caption" : "-"},
{
"id": "aligntab",
"caption": "AlignTab",
"children": [
{
"caption": "First Equal =",
"command": "align_tab",
"args": {"user_input" : "=/f"}
},
{
"caption" : "First Colon :",
"command" : "align_tab",
"args" : {"user_input" : ":/f"}
},
{
"caption": "Fat Arrow =>",
"command": "align_tab",
"args": {"user_input" : "=>"}
},
{
"caption" : "Ampersands &",
"command" : "align_tab",
"args" : {"user_input" : "&"}
},
{
"caption" : "Vertical Bars |",
"command" : "align_tab",
"args" : {"user_input" : "\\|"}
},
{
"caption" : "Spaces",
"command" : "align_tab",
"args" : {"user_input" : "\\s*/l1l0"}
},
{
"caption": "Exit Table Mode",
"command": "align_tab_clear_mode"
}
]
}
]