sublime test3使用卡顿现象的解决

最近在做网站相关的工作,又开始使用sublime text3,使用过程中发现st3使用的时候总是会出现卡顿的现象,一开始以为是因为笔记本的问题(surface pro4 i5 8+256),但是后来用到notepad++的时候发现正常,工程文件不大,就去网上扒了一下原因,发现主要是一下几种问题:

1.编辑卡顿。

2.开启卡顿。

解决方法:

 1.

"Sublime > Preferences > Package settings > GitGutter > Settings - User"


{ "non_blocking" : "true", "live_mode" : "false" }
(感谢博主Shanks_09)
2.
启动sublime3,ctrl+~打开命令窗口,输入以下
{
"update_check": false,
"font_size": 13,
"draw_white_space": "all",
"word_wrap": false,
"spell_check": false,
"auto_indent": true,
"highlight_line": true,
"match_selection": true,
"translate_tabs_to_spaces": false,
"tab_size": 4,
"smart_indent": true,
"detect_indentation": true
}

解决启动卡顿
作者:effDK
链接:https://www.zhihu.com/question/31487134/answer/54268661
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

你可能感兴趣的:(sublime test3使用卡顿现象的解决)