Disabling Visual Studio Code update notification

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

How can I permanently disable this update notification?

相关标签:
5条回答
  • 2020-12-15 02:54

    If you installed VS Code through a package manager (apt/yum/snap...) it will handle the updates and you can turn them off in code: Settings > Update: Mode > none.

    0 讨论(0)
  • 2020-12-15 02:58

    To date, we can't deactivate only the update notification. Either you stop update, or you deactivate all notifications. For the latter: go to settings (ctrl+,) then add:

    "editor.parameterHints": false

    0 讨论(0)
  • 2020-12-15 02:59

    For the latest versions of VS code (I am using version 1.32.2) the parameter "update.channel": "none" is deprecated. To disable updates use "update.mode": "none"

    0 讨论(0)
  • 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"
    
    0 讨论(0)
  • 2020-12-15 03:19

    Go in the settings with ctrl+,.

    Then set "update.mode" to "manual".

    VS Code will no longer check for updates on its own, but you will still be able to update it when you want to, by clicking on the cog at the bottom left:

    0 讨论(0)
提交回复
热议问题