之前已经有配好vimrc了,用起来问题也不是很大。。。

不过唯一的缺点就是太难敲了。。

一个是敲的时候缩进和补全全无,全靠手打。。

其实最主要的原因还是敲的少啦。。

然后主要还是P函数比较好用。。

D函数确实也有必要不过太长了可以考虑不敲。。就多点几下退格。。

如果有时间再敲D函数把。。

Q函数感觉没什么太大的作用。。一般不敲把。。



set nu
set cindent
set smarttab
set shiftwidth=4
set mouse=a

nmap<c-v> "+p
vmap<c-c> "+y
nmap<c-a> ggVG
inoremap ( ()<Esc>i
inoremap [ []<Esc>i
inoremap { {}<Esc>i
inoremap ' ''<Esc>i
inoremap " ""<Esc>i
inoremap <Enter> <c-r>=P()<CR>
inoremap <BS> <c-r>=D()<CR>

func P()
let a=getline('.')
let n=col('.')-2
if a[n]=='{'&&a[n+1]=='}'
return "\<Enter>\<Esc>zzO"
end
return "\<Enter>"
endf

func D()
let a=getline('.')
let n=col('.')-2
if index(["(","[","{","\"","\'"],a[n])!=-1&&index([")","]","}","\"","\'"],a[n+1])!=-1
return "\<Right>\<BS>\<BS>"
elseif a[n]=='{'&&match(a,'}')&&match(getline(line('.')+1),'}')!=-1
return "\<Esc>jddk$dla"
end
return "\<BS>"
endf