作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想为 vim 定义一个新动词(比如“o”),它可以对任何现有的 vim 文本对象进行操作。有关如何执行此操作的任何指示吗?
谢谢AB
最佳答案
这些动词称为运算符(请参阅:h 运算符
)。如果您想构建自己的运算符,则必须使用 '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 的 commentary plugin .
获取更多帮助
:h operator
:h :map-operator
:h 'opfunc'
:h g@
关于vim - 如何向 VIM 添加自定义动词?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11937363/
我是一名优秀的程序员,十分优秀!