gVIM设定技巧2010/09/09

在编辑->启动设定中设定如下启动参数:

set nocompatible
set fileencodings=ucs-bom,utf-8,cp936,gb18030,big5,euc-jp,euc-kr,latin1
colorscheme murphy

其中第一行设定不兼容vi,可以使用更多新增命令

第二行设定文件编码

第三行设定全局配色方案

一个典型的启动脚本如下:

 

 

set nocompatible source $VIMRUNTIME/vimrc_example.vim source $VIMRUNTIME/mswin.vim behave mswin colorscheme murphy set fileencodings=ucs-bom,utf-8,cp936,gb18030,big5,euc-jp,euc-kr,latin1 set diffexpr=MyDiff() function MyDiff() let opt = '-a --binary ' if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif let arg1 = v:fname_in if arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endif let arg2 = v:fname_new if arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endif let arg3 = v:fname_out if arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endif let eq = '' if $VIMRUNTIME =~ ' ' if &sh =~ '/<cmd' let cmd = '""' . $VIMRUNTIME . '/diff"' let eq = '"' else let cmd = substitute($VIMRUNTIME, ' ', '" ', '') . '/diff"' endif else let cmd = $VIMRUNTIME . '/diff' endif silent execute '!' . cmd . ' ' . opt . arg1 . ' ' . arg2 . ' > ' . arg3 . eq endfunction

你可能感兴趣的:(function,cmd,脚本,2010)