在编写Ruby代码时,每次光标碰到一个下面的建议就会出现 end
语句(类似intellisense)。
它非常烦人(破坏了流程,因为它必须被逃逸),而且毫无用处。我不知道它来自哪里或什么扩展。
我如何确定是哪块插件注入了这个建议?
然后,我如何关闭它?
在你的settings.json文件中--你可以控制哪个插件在做推荐--我的有以下功能。
"editor.quickSuggestions": null // use rubocop for formatting
"ruby.intellisense": "rubyLocate",
纯粹的禁用intellisense功能将由这些设置控制。
https:/code.visualstudio.comdocseditorintellisense。
我不相信你可以纯粹地关闭 "端 "只intellisense--这似乎是一个全有或全无的命题。