Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why can't turn off the Sublime 3 updates notification by adding "update_check":false in user setting file?

I want to turn off the Sublime 3 updates notification, so I go to Preferences -> Settings-User and edited it like this:

{     "auto_close_tags": true,     "font_size": 18,     "hot_exit": false,     "remember_open_files": false,     "show_encoding": true,     "update_check": false } 

but it doesn't work.

like image 717
MummyDing Avatar asked May 13 '15 07:05

MummyDing


People also ask

How do I turn off sublime update notification?

Just go to Preferences -> Settings-User and add there: “update_check”: false, I was puzzled at first.

Is Sublime Text no longer free?

Sublime Text may be downloaded and evaluated for free, however a license must be purchased for continued use. There is currently no enforced time limit for the evaluation.


2 Answers

Add this line in your host file.

127.0.0.1       www.sublimetext.com

for linux, host file is /etc/hosts and for windows it is C:\Windows\System32\Drivers\etc\hosts

Update : If you want to open sublime website on your browser then make sure to undo these changes.

like image 93
Ashish Doneriya Avatar answered Oct 25 '22 05:10

Ashish Doneriya


You need to register the software for "update_check": false to work.

https://github.com/SublimeTextIssues/Core/issues/1206#issuecomment-221630273

The deal is that if you're not paying, then your contribution is to help with testing the software, and for that you need to be using the latest version.

like image 33
mc0e Avatar answered Oct 25 '22 05:10

mc0e