如何禁用VS代码中的代码?

问题描述 投票:93回答:6

我已经搜索过,但没有找到任何关于如何在Visual Studio代码中禁用引用(或代码完全)的信息,它们对我来说非常无用且烦人。

visual-studio-code vscode-settings
6个回答
129
投票

您可以通过在用户设置中设置editor.codeLens设置来启用或禁用代码镜头(有关详细信息,请参阅https://code.visualstudio.com/Docs/editor/editingevolved#_reference-information)。


95
投票

更新:在VSCode的新设置编辑器中,就像在搜索中键入代码并勾选结果中的第一个复选框一样简单:

enter image description here


对我来说,修复它的设置是:

"editor.codeLens": false

在我的用户首选项json文件中。


27
投票

一步步:

1-按CTRL + SHIFT + P并搜索“用户设置”,然后打开settings.json文件。该文件位于:

%UserProfile%\AppData\Roaming\Code\User\settings.json

CTRL+SHIFT+P

2-在右侧面板覆盖设置“editor.codeLens”,其值为“false”。

editor.codeLens


10
投票

要专门禁用C#编辑器中的引用,请将其添加到“用户设置”:

"csharp.referencesCodeLens.enabled": false

这特别隐藏了C#编辑器中的引用数量,同时保持CodeLens的其余功能不变。

MotKohn还指出你可以使用下面的javascript.referencesCodeLens.enabledtypescript.referencesCodeLens.enabled。如果有帮助,请确保给他们一些积分!


1
投票

你可以Toggle CodeLens with the vscode-togglecodelens extension

  1. 安装vscode-togglecodelens扩展
  2. 重新加载Visual Studio代码
  3. 在Visual Studio Code命令面板中,键入“Toggle Codelens”以使Codelens显示或消失

Gif: Toggle CodeLens without modifying settings files


-1
投票

快速切换此功能的快捷方式:CTRL+SHIFT+P Toggle TypeLens

© www.soinside.com 2019 - 2024. All rights reserved.