-
Notifications
You must be signed in to change notification settings - Fork 1
/
sublime_urtext.sublime-commands
34 lines (28 loc) · 1.6 KB
/
sublime_urtext.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
[
/* Navigation */
{ "caption": "Urtext: Node List", "command": "node_browser"},
{ "caption": "Urtext: Home", "command" :"urtext_home"},
{ "caption": "Urtext: Toggle Traverse Mode", "command":"toggle_traverse"},
{ "caption": "Urtext: Select Project", "command" :"list_projects"},
{ "caption": "Urtext: Metadata Browser", "command" :"find_by_meta"},
/* Linking */
{ "caption": "Urtext: Link to ...", "command":"link_to_node"},
/* Generating Nodes */
{ "caption": "Urtext: Inline Node from Selection", "command" :"insert_node"},
{ "caption": "Urtext: Compact Node from Selection", "command" :"compact_node"},
/* Help and Log */
{ "caption": "Urtext: Documentation", "command" :"show_urtext_help"},
{ "caption": "Urtext: Log", "command" :"open_urtext_log"},
/* Project and File Management */
{ "caption": "Urtext: Reload Project", "command" :"urtext_reload_project"},
{ "caption": "Urtext: Reindex All Files", "command" :"re_index_files"},
{ "caption": "Urtext: Rename File from Meta", "command":"rename_file"},
{ "caption": "Urtext: Delete This Node", "command":"delete_this_node"},
{ "caption": "Urtext: Pop Node", "command" :"pop_node"},
{ "caption": "Urtext: Pull Node", "command" :"pull_node"},
{ "caption": "Urtext: Move File to Other Project", "command" :"move_file_to_another_project"},
{ "caption": "Urtext: Lint", "command" :"urtext_lint"},
/* Development and Debugging */
{ "caption": "Urtext: Debug", "command" :"debug"},
{ "caption": "Urtext: Turn Off Async (debugginh)", "command" :"no_async"},
]