forked from vkocubinsky/SublimeTableEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
24 lines (24 loc) · 1.5 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
[
{ "caption": "Table Editor: Enable for current view", "command": "table_editor_enable_for_current_view"
},
{ "caption": "Table Editor: Disable for current view", "command": "table_editor_disable_for_current_view"
},
{ "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"}
}
]