Class: Neovim::HandlerPlain
Instance Attribute Summary
Attributes inherited from Handler
Instance Method Summary collapse
-
#initialize(*args, **kwargs) ⇒ HandlerPlain
constructor
A new instance of HandlerPlain.
- #needs_client? ⇒ Boolean
Methods inherited from Handler
Constructor Details
#initialize(*args, **kwargs) ⇒ HandlerPlain
Returns a new instance of 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 |