VS Code + rust-analyzer 可以在代码中插入 inlay hints 吗?
Can VS Code + rust-analyzer insert inlay hints into the code?
我是用 Rust 编写的,但其他语言可能也是如此。
当我键入例如 let x = 5
时,vscode 显示 let x: i32 = 5
,其中 : i32
部分是一个嵌入提示。有什么方法可以让 vscode 将该提示插入到实际代码中吗?
是的,如果您点击 Ctrl + .
,然后使用箭头键 select“插入显式类型 `ty`”,然后点击回车,它会为您插入。
我是用 Rust 编写的,但其他语言可能也是如此。
当我键入例如 let x = 5
时,vscode 显示 let x: i32 = 5
,其中 : i32
部分是一个嵌入提示。有什么方法可以让 vscode 将该提示插入到实际代码中吗?
是的,如果您点击 Ctrl + .
,然后使用箭头键 select“插入显式类型 `ty`”,然后点击回车,它会为您插入。