如何获得要显示的类型提示?
How to get type hints to display?
我见过 youtuber 等人使用 Rust-analyzer 插件在 VSC 中使用 Rust,他们会在其中显示可选的类型注释,即使它不一定写在代码中。就像我在编辑器中输入 foo(a,b)
,它会自动显示 foo(a: A, b :B)
,其中 :A
和 :B
呈淡灰色,可能甚至没有写在文件中,只是视觉提示?很好,我不知道这是 VSC 还是锈蚀分析仪的功能?我的 Rust-analyzer 有两个设置 Parameter Hints 和 TypeHints 都设置为启用。
在这种情况下,您正在寻找 parameter hints
。要显示提示的函数也需要有多个参数。
确保设置已启用:
设置 (UI)
Inlay hints: Parameter hints
设置 (JSON)
"rust-analyzer.inlayHints.parameterHints": true
然后您应该得到类似于以下内容的结果:
fn add(x: u32, y: u32) -> u32 {
x + y
}
fn main() {
let result = add(x: 4, y: 2);
}
确保只启用 rust-analyzer
,因为它可能与 rls
冲突。一条警告 was added,如果两者都启用,它会提到以下内容:
You have both rust-analyzer (matklad.rust-analyzer) and Rust (rust-lang.rust)
plugins enabled. These are known to conflict and cause various functions of
both plugins to not work correctly. You should disable one of them.
rust-analyzer 显示镶嵌提示:
- 局部变量类型
- 函数参数的名称
- 链式表达式的类型
您可以通过将此添加到 settings.json
:
来切换镶嵌提示
{
"rust-analyzer.inlayHints.enable": true
}
或者您可以在 VSCode 首选项中搜索“锈镶嵌”。
我见过 youtuber 等人使用 Rust-analyzer 插件在 VSC 中使用 Rust,他们会在其中显示可选的类型注释,即使它不一定写在代码中。就像我在编辑器中输入 foo(a,b)
,它会自动显示 foo(a: A, b :B)
,其中 :A
和 :B
呈淡灰色,可能甚至没有写在文件中,只是视觉提示?很好,我不知道这是 VSC 还是锈蚀分析仪的功能?我的 Rust-analyzer 有两个设置 Parameter Hints 和 TypeHints 都设置为启用。
在这种情况下,您正在寻找 parameter hints
。要显示提示的函数也需要有多个参数。
确保设置已启用:
设置 (UI)
Inlay hints: Parameter hints
设置 (JSON)
"rust-analyzer.inlayHints.parameterHints": true
然后您应该得到类似于以下内容的结果:
fn add(x: u32, y: u32) -> u32 {
x + y
}
fn main() {
let result = add(x: 4, y: 2);
}
确保只启用 rust-analyzer
,因为它可能与 rls
冲突。一条警告 was added,如果两者都启用,它会提到以下内容:
You have both rust-analyzer (matklad.rust-analyzer) and Rust (rust-lang.rust)
plugins enabled. These are known to conflict and cause various functions of
both plugins to not work correctly. You should disable one of them.
rust-analyzer 显示镶嵌提示:
- 局部变量类型
- 函数参数的名称
- 链式表达式的类型
您可以通过将此添加到 settings.json
:
{
"rust-analyzer.inlayHints.enable": true
}
或者您可以在 VSCode 首选项中搜索“锈镶嵌”。