This repository has been archived by the owner on Jan 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
Default.sublime-commands
61 lines (42 loc) · 2.77 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[
{ "caption": "Table Editor: Enable for current view",
"command": "table_editor_enable_for_current_view", "args": {"prop": "enable_table_editor"} },
{ "caption": "Table Editor: Disable for current view",
"command": "table_editor_disable_for_current_view" , "args": {"prop": "enable_table_editor"}},
{ "caption": "Table Editor: Enable 'keep_space_left' for current view",
"command": "table_editor_enable_for_current_view",
"args": {"prop": "table_editor_keep_space_left"} },
{ "caption": "Table Editor: Disable 'keep_space_left' for current view",
"command": "table_editor_disable_for_current_view" ,
"args": {"prop": "table_editor_keep_space_left"}},
{ "caption": "Table Editor: Enable 'detect_header' for current view",
"command": "table_editor_enable_for_current_view",
"args": {"prop": "table_editor_detect_header"} },
{ "caption": "Table Editor: Disable 'detect_header' for current view",
"command": "table_editor_disable_for_current_view" ,
"args": {"prop": "table_editor_detect_header"}},
{ "caption": "Table Editor: Enable 'align_number_right' for current view",
"command": "table_editor_enable_for_current_view",
"args": {"prop": "table_editor_align_number_right"} },
{ "caption": "Table Editor: Disable 'align_number_right' for current view",
"command": "table_editor_disable_for_current_view" ,
"args": {"prop": "table_editor_align_number_right"}},
{ "caption": "Table Editor: Enable for current syntax",
"command": "table_editor_enable_for_current_syntax" },
{ "caption": "Table Editor: Disable for current syntax",
"command": "table_editor_disable_for_current_syntax"},
{ "caption": "Table Editor: Show demo film in new scratch view",
"command": "table_editor_film" },
{ "caption": "Table Editor: Set table syntax 'Simple' for current view",
"command": "table_editor_set_syntax", "args": {"syntax": "Simple"} },
{ "caption": "Table Editor: Set table syntax 'EmacsOrgMode' for current view",
"command": "table_editor_set_syntax", "args": {"syntax": "EmacsOrgMode"} },
{ "caption": "Table Editor: Set table syntax 'Pandoc' for current view",
"command": "table_editor_set_syntax", "args": {"syntax": "Pandoc"} },
{ "caption": "Table Editor: Set table syntax 'MultiMarkdown' for current view",
"command": "table_editor_set_syntax", "args": {"syntax": "MultiMarkdown"} },
{ "caption": "Table Editor: Set table syntax 'reStructuredText' for current view",
"command": "table_editor_set_syntax", "args": {"syntax": "reStructuredText"} },
{ "caption": "Table Editor: Set table syntax 'Textile' for current view",
"command": "table_editor_set_syntax", "args": {"syntax": "Textile"} }
]