Class: Neovim::HandlerPlain
Instance Attribute Summary
Attributes inherited from Handler
#spec
Instance Method Summary
collapse
Methods inherited from Handler
#execute, #name, #opts, #sync
Constructor Details
#initialize(*args, **kwargs) ⇒ HandlerPlain
53
54
55
56
57
|
# File 'lib/neovim/handler.rb', line 53
def initialize *args, **kwargs
super *args, **kwargs do |client,*a|
yield *a
end
end
|
Instance Method Details
#needs_client? ⇒ Boolean
59
|
# File 'lib/neovim/handler.rb', line 59
def needs_client? ; false ; end
|