-
Notifications
You must be signed in to change notification settings - Fork 10
/
LSP-rust-analyzer.sublime-commands
56 lines (56 loc) · 1.71 KB
/
LSP-rust-analyzer.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
[
{
"caption": "Preferences: LSP-rust-analyzer Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/LSP-rust-analyzer/LSP-rust-analyzer.sublime-settings",
"default": "// Settings in here override those in \"LSP-rust-analyzer/LSP-rust-analyzer.sublime-settings\"\n{\n\t$0\n}\n"
}
},
{
"caption": "LSP-rust-analyzer: Join Lines",
"command": "rust_analyzer_join_lines"
},
{
"caption": "LSP-rust-analyzer: Move Item Down",
"command": "rust_analyzer_move_item",
"args": {"direction": "Down"}
},
{
"caption": "LSP-rust-analyzer: Move Item Up",
"command": "rust_analyzer_move_item",
"args": {"direction": "Up"}
},
{
"caption": "LSP-rust-analyzer: Open Docs Under Cursor",
"command": "rust_analyzer_open_docs"
},
{
"caption": "LSP-rust-analyzer: Reload Project",
"command": "rust_analyzer_reload_project"
},
{
"caption": "LSP-rust-analyzer: Memory Usage (Clears Database)",
"command": "rust_analyzer_memory_usage"
},
{
"caption": "LSP-rust-analyzer: Run...",
"command": "rust_analyzer_run_project"
},
{
"caption": "LSP-rust-analyzer: Expand Macro Recursively",
"command": "rust_analyzer_expand_macro"
},
{
"caption": "LSP-rust-analyzer: View Item Tree",
"command": "rust_analyzer_view_item_tree"
},
{
"caption": "LSP-rust-analyzer: View Syntax Tree",
"command": "rust_analyzer_syntax_tree"
},
{
"caption": "LSP-rust-analyzer: Open Cargo.toml",
"command": "rust_analyzer_open_cargo_toml"
}
]