Disabling Visual Studio Code update notification

后端 未结 5 1276
刺人心
刺人心 2020-12-15 02:21

How can I permanently disable this update notification?

5条回答
  •  旧巷少年郎
    2020-12-15 03:06

    Go to File > Preferences > Settings (or hit Ctrl-,)

    Here two files will open. One is "Default Settings" and other is "User Settings".

    Add a new parameter in "User Settings"

    "update.channel": "none"  
    

    Then save the files, VS Code will ask you to restart, and then you won't receive the update message.

    Update

    update.channel is deprecated, use update.mode instead

    "update.mode": "none"
    

提交回复
热议问题