如何关闭 vscode 的 rust-analyzer 插件的自动类型提示
作者:互联网
有两种方式解决:
第一种方式:
打开vode的设置界面搜索:
typeHints 和 parameterHints ,并设置为 disable
第二种方式:
直接打卡vscode的配置文件 /C:/Users/your_user_name/AppData/Roaming/Code/User/settings.json:
并添加:
"rust-analyzer.inlayHints.typeHints.enable": false, "rust-analyzer.inlayHints.parameterHints.enable": false
参考:
- https://rust-analyzer.github.io/manual.html#configuration
- https://stackoverflow.com/questions/69909997/can-i-remove-type-annotation-help-from-rust-analyzer
谷歌关键字: rust analyzer disable type hints
标签:插件,false,vscode,analyzer,https,type,rust 来源: https://www.cnblogs.com/javatql/p/16542390.html