Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I disable the update notification of VsCode? [duplicate]

VsCode nags me everytime there's an update, i.e. every month or so.

Installing the update is a bit complicated (go to Website, download Deb, open terminal, sudo dpkg etc.) so I would like VsCode to not bother me with this update bar.

Is it possible?

I couldn't find a setting that allows to hide this bar..

like image 613
Gui13 Avatar asked May 16 '17 10:05

Gui13


People also ask

How do I turn off VS Code auto update?

If you do not want to get automatic updates, you can set the Update: Mode setting from default to none . To modify the update mode, go to File > Preferences > Settings (macOS: Code > Preferences > Settings), search for update mode and change the setting to none .

How do I turn off VS Code notifications?

Right-click the bell icon and select 'Hide Notifications' from the menu. Show activity on this post. It looks there will be a Do not Disturb mode in vscode v1.

How do I stop VS Code pop ups?

Type “editor. hover. enable” into the search field then check/uncheck the checkbox associated with “Controls whether the hover is shown.” to enable/disable the suggestion tooltip on hover.

How do you turn off telemetry in VS Code?

Disable telemetry reporting# telemetryLevel user setting to off . From File > Preferences > Settings (macOS: Code > Preferences > Settings), search for telemetry , and set the Telemetry: Telemetry Level setting to off . This will silence all telemetry events from VS Code going forward.


1 Answers

Add this to settings.json:

"update.mode": "none",
like image 158
Alex Avatar answered Oct 02 '22 20:10

Alex