Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的.vimrc.
.vimrc
autocmd BufWritePre * silent! v/\_s*\S/d
这会在保存时去除文件末尾的空行。问题是,当它剥离行时,它也会将光标移动到文件的最后一行。有没有办法避免修改光标位置?
function! <SID>DelEmptyLinesEnd() let l = line(".") let c = col(".") v/\_s*\S/d call cursor(l, c) endfunction autocmd BufWritePre * :call <SID>DelEmptyLinesEnd()