发布时间:2013-06-07 12:49:38
es and tab if (!empty(line)) break endif let n = n - 1 endwhile " Delete all empty lines at the end of file let start = n+1+a:keep if (start < lastline) execute n+1+a:keep . "," . lastline . "d" endif " after clean spaces and tabs, jump back exec "normal " . lnum . "G" endfu.........【阅读全文】
发布时间:2013-06-07 12:48:03
"au VimLeave * mksession! $VIMRUNTIME/Session.vim "au VimLeave * wviminfo! $VIMRUNTIME/_viminfo "source $VIMRUNTIME/Session.vim "rviminfo $VIMRUNTIME/_viminfo "记录上次关闭的文件及状态 set viminfo='10,\"100,:20,%,n$VIMRUNTIME/_viminfo au BufReadPost * if line("'\"") > 0|if line("'\"") <= line.........【阅读全文】
发布时间:2013-05-10 16:37:29
g/xxx/d,删除包含xxx的行 v/xxx/d,删除不含xxx的行 :%s/xxx//gn,统计xxx个数,n表示只报告匹配的个数而不进行实际的替换。 :1,%s/要被替换的字串/替换为的子串/g :% s/^.\{4\}//g将当前缓冲区的所有行的前4个字符删除 按键操作: 注释:ctrl+v 进入列编辑模式,向下或向.........【阅读全文】
发布时间:2013-04-25 15:43:22
由于在windows下默认是gb编码,而我的vim默认是utf-8(gedit默认也是utf-8),所以打开会成乱码。修改了一下配置文件,使vim支持gb编码就好了。$vim ~/.vimrclet &termencoding=&encodingset fileencodings=utf-8,gbk$:wq再次打开vi,显示就正常了。如果不正常,重新开一个终端,再次打开vi。更详细的资料:v.........【阅读全文】