-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathDefault.sublime-commands
39 lines (39 loc) · 1022 Bytes
/
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
[
{
"caption": "AlignTab",
"command": "align_tab"
},
{
"caption": "AlignTab: Table Mode",
"command": "align_tab",
"args": {"mode" : true}
},
{
"caption": "AlignTab: Live Preview Mode",
"command": "align_tab",
"args": {"live_preview" : true}
},
{
"caption": "AlignTab: Exit Table Mode",
"command": "align_tab_clear_mode"
},
{
"caption": "Preferences: AlignTab Settings",
"command": "edit_settings",
"args":
{
"base_file": "${packages}/AlignTab/AlignTab.sublime-settings",
"default": "{\n\t$0\n}\n"
}
},
{
"caption": "Preferences: AlignTab Context Menu",
"command": "align_tab_edit_settings",
"args":
{
"user_file": "${packages}/User/AlignTab/Context.sublime-menu",
"base_file": "${packages}/AlignTab/Context.sublime-menu",
"default": "[\n\t$0\n]\n"
}
}
]