Reputation: 137544
Whenever I open Sublime Text it throws a pop-up:
A new version of Sublime Text is available, download now?
How can I disable this check? My work blocks installing software updates.
Upvotes: 50
Views: 25248
Reputation: 9734
Go to Preferences -> Settings-User and add there: "update_check": false
EDIT :
If it's not working then add this line 127.0.0.1 www.sublimetext.com
in your host file
File Location
Windows : c:/windows/system32/drivers/etc/hosts
Linux : /etc/hosts
Upvotes: 94
Reputation: 5092
For Sublime Text 3 Or Sublime 4 Latest Build - Build 4113 | BUILD 4121
GoTo Preferences -> Settings
and Add Below Line in Right Side Window Panel Of Sublime Text and Save It.
{
"update_check": false,
}
Upvotes: 3
Reputation: 71
Some linux distros are update intensive, others fall behind. And this nag is really annoying.
I've disabled the update nag by blocking the entire Sublime domain, thus the app can't check the latest version, thus no update nag.
Just add the line below to the hosts file:
127.0.0.1 www.sublimetext.com
Windows: C:\Windows\System32\Drivers\Etc\hosts
Mac/Linux: /etc/hosts
Note: Remember that you (or any other app) won't be able to access the Sublime website while this line is in the hosts file.
Upvotes: 2
Reputation: 63
How about you block Sublime Text's connection via firewall? Create a new rule. It worked for me.
Upvotes: 5