VIM 不错的文章
时间:2009-04-18 来源:raymond1984
用VIM也有几个月了,一直觉得够用就好,也没有刻意的去学习多少vim的技巧,今天看到了recording功能,正好再学习一次。
普通人的编辑利器,对于VIM入门讲解的还是比较清楚的
http://blog.sina.com.cn/s/blog_46dac66f010005kw.html
手把手教你把Vim改装成一个IDE编程环境(图文),这篇文章写的很好,我最初就是按照上面的方法调整我的VIM的,很好用
http://blog.csdn.net/wooin/archive/2007/10/31/1858917.aspx
程序员的利器
本文详细介绍了VIM的历史、基本知识等,并介绍了作者作为一个程序员经常用到的一些相关资源。同时包含了大量的参考文献,适合想深入了解VIM的读者。
http://www.pconline.com.cn/pcedu/soft/gj/photo/0609/877033_1.html
bash_support
http://www.vim.org/scripts/script.php?script_id=365
bash support 可以方便的帮助编写脚本,有点想VS中snippet的功能, 安装后按照readme稍微设置一下就行了。默认的一些文件的路径是
$home/.vim/bash_support/..., if you get " file ?? was not found" when you use some hot-key(\ch,\si), append the following lines into your $home/.vimrc
let g:BASH_Template_Directory = $HOME."/.vim/plugin/templates/"
let g:BASH_Template_File = "bash-file-header"
let g:BASH_Template_Frame = "bash-frame"
let g:BASH_Template_Function = "bash-function-description"
let g:BASH_CodeSnippets = $HOME.'/.vim/plugin/codesnippets'
let g:BASH_Dictionary_File = $HOME."/.vim/plugin/wordlists/bash.list"
在ubuntu中,默认的vim无法实现系统剪贴板的功能,也就是看不到"* and "+寄存器,这时候可以安装vim-gtk,里面可以看到这两个寄存器.
普通人的编辑利器,对于VIM入门讲解的还是比较清楚的
http://blog.sina.com.cn/s/blog_46dac66f010005kw.html
手把手教你把Vim改装成一个IDE编程环境(图文),这篇文章写的很好,我最初就是按照上面的方法调整我的VIM的,很好用
http://blog.csdn.net/wooin/archive/2007/10/31/1858917.aspx
程序员的利器
本文详细介绍了VIM的历史、基本知识等,并介绍了作者作为一个程序员经常用到的一些相关资源。同时包含了大量的参考文献,适合想深入了解VIM的读者。
http://www.pconline.com.cn/pcedu/soft/gj/photo/0609/877033_1.html
bash_support
http://www.vim.org/scripts/script.php?script_id=365
bash support 可以方便的帮助编写脚本,有点想VS中snippet的功能, 安装后按照readme稍微设置一下就行了。默认的一些文件的路径是
$home/.vim/bash_support/..., if you get " file ?? was not found" when you use some hot-key(\ch,\si), append the following lines into your $home/.vimrc
let g:BASH_Template_Directory = $HOME."/.vim/plugin/templates/"
let g:BASH_Template_File = "bash-file-header"
let g:BASH_Template_Frame = "bash-frame"
let g:BASH_Template_Function = "bash-function-description"
let g:BASH_CodeSnippets = $HOME.'/.vim/plugin/codesnippets'
let g:BASH_Dictionary_File = $HOME."/.vim/plugin/wordlists/bash.list"
在ubuntu中,默认的vim无法实现系统剪贴板的功能,也就是看不到"* and "+寄存器,这时候可以安装vim-gtk,里面可以看到这两个寄存器.
相关阅读 更多 +