我已经使用PPA存储库在Ubuntu上安装了Sublime 2,并通过本机Ubuntu机制对其进行了更新,因此每次我启动Sublime时都会看到“有新版本可用...”让我很烦。在Sublime配置文件中找不到任何搜索“更新”的内容。在哪里可以禁用通知?
Answers:
update_check
Sublime版本2.0.1内部版本2217中有字段。
只需转到Preferences
-> Settings-User
并在其中添加:"update_check": false
然后,Sublime停止检查新版本。
请注意,至少在某些版本中,此检查在评估期间被故意破坏。
{ "word_wrap": "true", "update_check": false }
**false**
您可以在/etc/hosts
文件中添加以下条目:
127.0.0.1 www.sublimetext.com
这将阻止Sublime Text访问更新URL(http://www.sublimetext.com/updates/2/stable/updatecheck)。
使用“ apt-get install sublime-text”进行更新。首选项没有帮助我。
这是Sublime论坛的Site Admin回答的链接,似乎您具有Dev版本。 http://www.sublimetext.com/forum/viewtopic.php?f=3&t=1776#p8152
这是对PPA存储库的描述引述的内容:https : //launchpad.net/~webupd8team/+archive/sublime-text-2
Sublime Text 2软件包-.deb将自动从www.sublimetext.com/dev下载最新版本
您应该从源代码安装sublime。
我遇到了同样的问题,所以我实际上是使我的更新(我通过终端使用apt-get进行更新,但是当然欢迎您随时进行更新,包括更新管理器)。我不建议您进行更新,但是我想向您保证,更新不会给我带来任何麻烦。更新后没有新问题。
yes
而是去终端使用apt-get
。
将这些代码直接放入高级文本编辑器中。
{
// Sets the colors used within the text area
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"font_size": 11,
//sublime update check disable
"update_check": false,
"word_wrap": "true",
}
只需转到sublime,然后转到“首选项”->“设置” -User并添加:“ update_check”:false,如下所示
{“ font_size”:12,“ update_check”:假}