Method: Neovim::Plugin::DSL#command
- Defined in:
- lib/neovim/plugin/dsl.rb
#command(name, options = {}, &block) ⇒ Object
Register an nvim
command. See :h command.
35 36 37 |
# File 'lib/neovim/plugin/dsl.rb', line 35 def command(name, ={}, &block) register_handler(:command, name, , block) end |