7

我想为 vim 定义一个新动词(比如'o'),它可以对任何现有的 vim 文本对象进行操作。关于我如何去做这件事的任何指示?

谢谢 AB

4

1 回答 1

7

这些动词称为操作符(参见 参考资料:h operator)。如果要构建自己的运算符,则必须使用'operatorfunc'设置然后执行g@。vim 文档最好地解释了如何执行此操作,请参阅 ( :h :map-operator) 以下是 vim 文档中的示例:

nmap <silent> <F4> :set opfunc=CountSpaces<CR>g@
vmap <silent> <F4> :<C-U>call CountSpaces(visualmode(), 1)<CR>

function! CountSpaces(type, ...)
  let sel_save = &selection
  let &selection = "inclusive"
  let reg_save = @@

  if a:0  " Invoked from Visual mode, use '< and '> marks.
    silent exe "normal! `<" . a:type . "`>y"
  elseif a:type == 'line'
    silent exe "normal! '[V']y"
  elseif a:type == 'block'
    silent exe "normal! `[\<C-V>`]y"
  else
    silent exe "normal! `[v`]y"
  endif

  echomsg strlen(substitute(@@, '[^ ]', '', 'g'))

  let &selection = sel_save
  let @@ = reg_save
endfunction

如果您想要另一个示例,请查看 Tim Pope 的评论插件

如需更多帮助

:h operator
:h :map-operator
:h 'opfunc'
:h g@
于 2012-08-13T15:39:42.867 回答