vim真是不好上手,感觉好烦。 另外linux下连校园wifi上网特别慢,git clone也一直提示fatal: unable to access 'https://github.com/XXXXXXX/XXX.GIT': GnuTLS recv error (-54): Error in the ...
分类:
系统相关 时间:
2016-09-02 00:29:08
阅读次数:
196
我们在使用插件的时候,都不希望插件安装的很杂乱,它不是一个看不见的黑盒,也为了下次方便在其它地方安装。 由于要方便插件管理,于是有了 Vundle,以下做些介绍: 1. 一个插件管理器, 自己本身也是插件, 这是必需工具: 2. Vundle 在 .vimrc 中通过以下配置项来管理其它插件: 配置 ...
分类:
系统相关 时间:
2016-08-30 21:04:41
阅读次数:
401
1 安装VIM 2 安装vim插件管理工具。过程见链接。(谢谢) 3 在.vimrc中添加下列代码 保存退出后打开vim,在正常模式下输入 :BundleInstall 等待安装完成。 4 若是之前未安装依赖关系的软件 python-dev libxml2-dev libxslt-dev等,需要安装 ...
分类:
系统相关 时间:
2016-08-29 12:34:20
阅读次数:
236
【ctags功能】: 为源码的变量/对象、结构体/类、函数/接口、宏等产生索引文件,以便快速定位。目前支持41种语言。 【ctags的安装】 1)在线安装: sudo apt-get install ctags (ubuntu) (RedHat系列使用:yum install ctags) 若不成功 ...
分类:
系统相关 时间:
2016-08-16 21:40:34
阅读次数:
214
vim插件地址:http://files.cnblogs.com/files/pokerface/vim.rar ...
分类:
系统相关 时间:
2016-08-12 19:44:53
阅读次数:
261
ls /usr/share/vim/vim74/colorsblue.vim default.vim desert.vim evening.vim morning.vim pablo.vim README.txt shine.vim torte.vimdarkblue.vim delek.vim e ...
分类:
系统相关 时间:
2016-08-12 16:43:31
阅读次数:
442
需要软件 vim 下载地址 http://www.vim.org code_complete.vim 插件 http://www.vim.org/scripts/script.php?script_id=1764 ctags 一般安装完vim后都会有,ubuntu中好像是不支持,需要下载. 一 vi ...
分类:
系统相关 时间:
2016-08-06 12:42:59
阅读次数:
199
安装 (先安装vundle,再通过这个插件管理器安装管理其它插件) cd ~mkdir .vim git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle vim .vimrc if v:lang =~ "utf8$" | ...
分类:
系统相关 时间:
2016-08-05 22:54:01
阅读次数:
426
1 进入自己的vim mkdir ./bundile/vundle 2 在vim同级中执行 git clone https://github.com/gmarik/vundle.git ./bundle/vundle 将一些插件文件 下载到./bundle/vundle中 3 编写自己的vim配置 ...
分类:
系统相关 时间:
2016-08-04 21:16:57
阅读次数:
296
1 简介
在PHP文件保存时会自动进行语法检查,有错误会提示,没有错误不提示。*语法检查使用系统的php -l -n命令;*对非PHP文件不起作用;
2 下载(v1.1版本)
http://www.vim.org/scripts/script.php?script_id=4984
3 安装
# whereis vim...
分类:
Web程序 时间:
2016-07-12 12:15:18
阅读次数:
166