如何禁用 VS Code 的自我更新?
How do I disable VS Code of updating itself?
我在早上更新了我的 VS 代码,现在在晚上它会在安装更新的设置图标上显示一个徽章。 VS Code 更新文件似乎每秒都会到达,它 让我 安装更新(它让你关闭编辑器,当你想打开它时,需要很长时间才能安装新的更新,然后打开更新的版本。
我知道保持最新很酷,但强迫你每天更新两次对我来说并不酷,那么有什么方法可以禁止 vs code 更新吗?
您是否尝试将 JSON 用户设置更新为 "update.mode":"none"
导航步骤:
文件 > 首选项 > 设置
参考文献:
https://code.visualstudio.com/docs/supporting/FAQ
以下文本块来自 FAQ VS 代码
How do I opt out of VS Code auto-updates?
By default, VS Code is set up to auto-update for macOS and Windows
users when we release new updates. If you do not want to get automatic
updates, you can set the update.channel setting from default to none.
To modify the update channel, go to File > Preferences > Settings and
add the update.channel setting with the value "none".
"update.mode": "none"
这个问题困扰我很久了,按照截图中的步骤解决了。我将其设置为手动并且有效:
none 选项有效,因此两个选项之间没有明显区别。
转到文件>首选项>设置(macOS:代码>首选项>设置),搜索更新mode 并将设置更改为 none
我在早上更新了我的 VS 代码,现在在晚上它会在安装更新的设置图标上显示一个徽章。 VS Code 更新文件似乎每秒都会到达,它 让我 安装更新(它让你关闭编辑器,当你想打开它时,需要很长时间才能安装新的更新,然后打开更新的版本。
我知道保持最新很酷,但强迫你每天更新两次对我来说并不酷,那么有什么方法可以禁止 vs code 更新吗?
您是否尝试将 JSON 用户设置更新为 "update.mode":"none"
导航步骤:
文件 > 首选项 > 设置
参考文献:
https://code.visualstudio.com/docs/supporting/FAQ
以下文本块来自 FAQ VS 代码
How do I opt out of VS Code auto-updates?
By default, VS Code is set up to auto-update for macOS and Windows users when we release new updates. If you do not want to get automatic updates, you can set the update.channel setting from default to none.
To modify the update channel, go to File > Preferences > Settings and add the update.channel setting with the value "none".
"update.mode": "none"
这个问题困扰我很久了,按照截图中的步骤解决了。我将其设置为手动并且有效:
none 选项有效,因此两个选项之间没有明显区别。
转到文件>首选项>设置(macOS:代码>首选项>设置),搜索更新mode 并将设置更改为 none