最佳答案
I've recently found a vim plugin using something called <Plug>
. For example there is a command <Plug>abc_def
which I would like to execute.
I've tried everything like :<Plug>abc_def
and similar. Nothing worked. And :help <Plug>
gave no information.
However, I've been able to execute it by creating a mapping :map x <Plug>(unite_redraw)
. Then I can execute it by pressing x
.
Now, is there any way to execute :<Plug>abc_def
without creating a dummy mapping just to run it? The actual plugin I use is Unite.