Method: Neovim::Plugin::DSL#autocmd
- Defined in:
- lib/neovim/plugin/dsl.rb
#autocmd(event, options = {}, &block) ⇒ Object
Register an nvim
autocmd. See :h autocmd.
65 66 67 |
# File 'lib/neovim/plugin/dsl.rb', line 65 def autocmd(event, ={}, &block) register_handler(:autocmd, event, , block) end |