tab补全
1 function! CleverTab() 2 if strpart( getline('.') ,0,col('.')-1) =~'^s*$' 3 return "<Tab>" 4 else 5 return "<C-N>" 6 endif 7 endfunction 8 inoremap <Tab> <C-R>=CleverTab()<CR>
取消提示
set shortmess=a set cmdheight=2
https://www.jianshu.com/p/79f3a5eb32dd?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation