VIM:命令/功能的可选行范围

时间:2013-04-23 08:27:38

标签: vim

我在我的.vimrc中有这个删除尾随空格:

function! RemoveTrailingWhitespace()
  for lineno in range(a:firstline, a:lastline)
    let line = getline(lineno)
    let cleanLine = substitute(line, '\(\s\| \)\+$', '', 'e')
    call setline(lineno, cleanLine)
  endfor
endfunction
command -range RemoveTrailingWhitespace <line1>,<line2>call RemoveTrailingWhitespace()
command -range RT                       <line1>,<line2>call RemoveTrailingWhitespace()

这允许我调用:'<,'>RT来删除用于视觉选择的行范围的尾随空格。然而,当我只是呼叫:RT时,它只在当前行上运行。我想要的是将命令应用于整个缓冲区。如何实现这一目标?

3 个答案:

答案 0 :(得分:11)

如果您不提供range,则range的命令将适用于当前行。如果您想在整个缓冲区上执行此操作,请使用:%RT:1,$RT

将整个缓冲区作为默认范围可以做的是:

command -range=% RT  <line1>,<line2>call RemoveTrailingWhitespace()

细节:

:h command-range

然后你看:

Possible attributes are:

-range      Range allowed, default is current line
-range=%    Range allowed, default is whole file (1,$)
-range=N    A count (default N) which is specified in the line
        number position (like |:split|); allows for zero line
        number.
-count=N    A count (default N) which is specified either in the line
        number position, or as an initial argument (like |:Next|).
        Specifying -count (without a default) acts like -count=0
您的功能

一条评论/问题

如果您有范围信息,为什么不在命令:[range]s中调用vim-build来进行替换?然后你可以保存这些行getlinesetline,以及loop

答案 1 :(得分:2)

最后,我选择了这个更简单的解决方案,它也保持了光标位置:

command -range=% RemoveTrailingWhitespace <line1>,<line2>s/\(\s\| \)\+$// | norm! ``
command -range=% RT                       <line1>,<line2>RemoveTrailingWhitespace

感谢@Kent的建议!

答案 2 :(得分:0)

command! TrimAllWhitespace %s/\s\+$//