We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d125e2 commit 7c51929Copy full SHA for 7c51929
.gitignore
@@ -15,6 +15,7 @@ bin/node/runtime/wasm/target/
15
!**/.vscode/extensions.json
16
!**/.vscode/launch.json
17
!**/.vscode/tasks.json
18
+!**/.vscode/faq.md
19
20
21
polkadot.*
.vscode/faq.md
@@ -0,0 +1,16 @@
1
+# vscode faq
2
+
3
4
5
+## rust + rust-analyzer
6
7
+- 默认子项目如果不在根目录的 `workspace` 内, vscode 需要添加自定义的路径到 `settings.json` 中.
8
+- https://rustcc.cn/article?id=02cf99e7-9de3-44ef-b6d4-97720ce1f00c
9
10
11
+```json
12
13
+ "rust-analyzer.linkedProjects": [
14
+ "path/to/Cargo.toml"
+ ]
+```
0 commit comments