作者:简单d-e独白 | 来源:互联网 | 2014-05-30 10:25
vim启动无比慢的解决方法最近gentoo上的vim启动无比慢,可以使用多次的Ctrl+C来加快。通过:helpslow-start的说明www.2cto.comIfVimtakesalongtimetostartup,usethe--startuptim...
vim启动无比慢的解决方法
最近gentoo上的vim启动无比慢,可以使用多次的Ctrl+C来加快。
通过 :help slow-start 的说明
www.2cto.com
If Vim takes a long time to start up, use the --startuptime argument to find
out what happens. There are a few common causes:
- If the Unix version was compiled with the GUI and/or X11 (check the output
of ":version" for "+GUI" and "+X11"), it may need to load shared libraries
and connect to the X11 server. Try compiling a version with GUI and X11
disabled. This also should make the executable smaller.
Use the -X command line argument to avoid connecting to the X server when
running in a terminal. www.2cto.com
果断把本地的Xmanager启动起来,vi果然地快了。
在/etc/portage目录下创建了pakcage.use文件,加上
app-editors/vim -X
重新编译安装vim后,vim就不管X了。