如何在 vscode 中禁用受限模式功能和/或横幅
how to disable restricted mode feature &/or banner in vscode
每当我打开 vscode 时,它会显示(在顶部的横幅中):
Restricted Mode is intended for safe code browsing. Trust this window
to enable all features. Manage Learn More
屏幕截图如下:
我不需要此功能和/或横幅。
如何禁用它?
我希望 this 可以帮助您禁用 workspace trust
。
您可能需要在设置中将 security.workspace.trust.enabled
设置为 false
。
除此之外,还有一个命令行开关 (--disable-workspace-trust
),您可以在打开 vscode 时通过它,这将禁用此功能
File > Preferences > Settings >
搜索 "Trust"
,然后禁用显示
的复选框
"Controls whether or not workspace trust is enabled within VS Code."
重启后就可以了。
每当我打开 vscode 时,它会显示(在顶部的横幅中):
Restricted Mode is intended for safe code browsing. Trust this window to enable all features. Manage Learn More
屏幕截图如下:
我不需要此功能和/或横幅。
如何禁用它?
我希望 this 可以帮助您禁用 workspace trust
。
您可能需要在设置中将 security.workspace.trust.enabled
设置为 false
。
除此之外,还有一个命令行开关 (--disable-workspace-trust
),您可以在打开 vscode 时通过它,这将禁用此功能
File > Preferences > Settings >
搜索 "Trust"
,然后禁用显示
"Controls whether or not workspace trust is enabled within VS Code."
重启后就可以了。