-
Notifications
You must be signed in to change notification settings - Fork 1
/
Default.sublime-commands
66 lines (66 loc) · 1.61 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
62
63
64
65
66
[
{
"caption": "Preferences: TreeSitter Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/TreeSitter/TreeSitter.sublime-settings",
"default": "{\n $0\n}\n"
}
},
{
"caption": "TreeSitter: Install Language",
"command": "tree_sitter_install_language"
},
{
"caption": "TreeSitter: Remove Language",
"command": "tree_sitter_remove_language"
},
{
"caption": "TreeSitter: Update Language",
"command": "tree_sitter_update_language"
},
{
"caption": "TreeSitter: Select Ancestor",
"command": "tree_sitter_select_ancestor",
},
{
"caption": "TreeSitter: Select Sibling",
"command": "tree_sitter_select_sibling",
},
{
"caption": "TreeSitter: Select Cousins",
"command": "tree_sitter_select_cousins",
},
{
"caption": "TreeSitter: Select Descendant",
"command": "tree_sitter_select_descendant",
},
{
"caption": "TreeSitter: Select Symbols",
"command": "tree_sitter_select_symbols",
},
{
"caption": "TreeSitter: Goto Symbol",
"command": "tree_sitter_goto_symbol",
},
{
"caption": "TreeSitter: Query Symbol",
"command": "tree_sitter_query_symbol",
},
{
"caption": "TreeSitter: Print Tree",
"command": "tree_sitter_print_tree",
},
{
"caption": "TreeSitter: Show Node Under Selection",
"command": "tree_sitter_show_node_under_selection",
},
{
"caption": "TreeSitter: Toggle Show Node Under Selection",
"command": "tree_sitter_toggle_show_node_under_selection",
},
{
"caption": "TreeSitter: Reload Plugin",
"command": "tree_sitter_reload"
},
]