如何在Vi和Vim中保存时自动删除尾随空格?


22

.vimrc设置保存文件时自动删除尾随空格的设置吗?

理想情况下(为了安全起见),我只希望对某些文件具有此功能,例如 *.rb

Answers:


25

这适用于所有文件(在.vimrc文件中):

autocmd BufWritePre * :%s/\s\+$//e

这仅适用于ruby(.rb)文件(在.vimrc文件中):

autocmd BufWritePre *.rb :%s/\s\+$//e

6
这个解决方案很好,但是我认为下面的@Sukminder解决方案更好,因为它可以正确地重新定位光标。
hlin117

尾巴有什么e用?
激进分子

19

要保持光标位置,请使用类似以下内容:

function! <SID>StripTrailingWhitespaces()
    let l = line(".")
    let c = col(".")
    %s/\s\+$//e
    call cursor(l, c)
endfun

否则光标将在保存后结束于上次替换行的开头。

示例:您在行尾有一个空格122,您在行中982并输入:w。不恢复位置,将导致光标在行首结束,122从而终止工作流程。

使用autocmd示例设置对函数的调用:

" Using file extension
autocmd BufWritePre *.h,*.c,*.java :call <SID>StripTrailingWhitespaces()

" Often files are not necessarily identified by extension, if so use e.g.:
autocmd BufWritePre * if &ft =~ 'sh\|perl\|python' | :call <SID>StripTrailingWhitespaces() | endif

" Or if you want it to be called when file-type i set
autocmd FileType sh,perl,python  :call <SID>StripTrailingWhitespaces()

" etc.

也可以通过以下方式使用(但在这种情况下则不需要)getpos()

let save_cursor = getpos(".")
" Some replace command
call setpos('.', save_cursor)

" To list values to variables use:
let [bufnum, lnum, col, off] = getpos(".")

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.