forked from fannheyward/coc-rust-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-rust-analyzer-configurations.json
104 lines (104 loc) · 3.43 KB
/
coc-rust-analyzer-configurations.json
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"rust-analyzer.enable": {
"type": "boolean",
"default": true
},
"rust-analyzer.terminal.startinsert": {
"type": "boolean",
"default": false,
"description": "Enter insert mode after terminal displayed"
},
"rust-analyzer.debug.runtime": {
"type": "string",
"default": "termdebug",
"enum": [
"termdebug",
"vimspector"
],
"description": "Choose which debug runtime to use",
"enumDescriptions": [
"`\"termdebug\"` use vim/neovim builtin debugger - gdb",
"`\"vimspector\"` use vimspector plugin"
]
},
"rust-analyzer.debug.vimspector.configuration.name": {
"type": "string",
"default": "launch",
"description": "Specify the name of the vimspector configuration name. The following args will be passed to the configuration: `Executable` and `Args` (both strings)"
},
"rust-analyzer.inlayHints.enable": {
"type": "boolean",
"default": true,
"description": "Whether to show inlay hints"
},
"rust-analyzer.inlayHints.typeHintsSeparator": {
"type": "string",
"default": "‣",
"description": "Separator text for typeHints in virtual text"
},
"rust-analyzer.inlayHints.typeHintsWithVariable": {
"type": "boolean",
"default": true,
"description": "Show typeHints with variables name"
},
"rust-analyzer.inlayHints.chainingHintsSeparator": {
"type": "string",
"default": "‣",
"description": "Separator text for chainingHints in virtual text"
},
"rust-analyzer.inlayHints.refreshOnInsertMode": {
"type": "boolean",
"default": false,
"description": "Whether to refresh inlayHints on insert mode"
},
"rust-analyzer.server.path": {
"type": [
"null",
"string"
],
"default": null,
"description": "Path to rust-analyzer executable (points to bundled binary by default). If this is set, then \"rust-analyzer.updates.channel\" setting is not used"
},
"rust-analyzer.server.extraEnv": {
"type": [
"null",
"object"
],
"default": null,
"markdownDescription": "Extra environment variables that will be passed to the rust-analyzer executable. Useful for passing e.g. `RA_LOG` for debugging."
},
"rust-analyzer.trace.server": {
"type": "string",
"scope": "window",
"enum": [
"off",
"messages",
"verbose"
],
"enumDescriptions": [
"No traces",
"Error only",
"Full log"
],
"default": "off",
"description": "Trace requests to the rust-analyzer"
},
"rust-analyzer.updates.prompt": {
"type": "boolean",
"default": true,
"description": "Prompt the user before downloading rust-analyzer"
},
"rust-analyzer.updates.channel": {
"type": "string",
"default": "stable",
"enum": [
"stable",
"nightly"
],
"description": "Choose `\"nightly\"` updates to get the latest features and bug fixes every day. While `\"stable\"` releases occur weekly and don't contain cutting-edge features from VSCode proposed APIs",
"enumDescriptions": [
"`\"stable\"` updates are shipped weekly, they don't contain cutting-edge features from VSCode proposed APIs but have less bugs in general",
"`\"nightly\"` updates are shipped daily (extension updates automatically by downloading artifacts directly from GitHub), they contain cutting-edge features and latest bug fixes. These releases help us get your feedback very quickly and speed up rust-analyzer development **drastically**"
]
}
}