Method: Neovim::RemoteObject#method_missing
- Defined in:
- lib/neovim/remote_object.rb
permalink #method_missing(method_name, *args) ⇒ Object
Intercept method calls and delegate to appropriate RPC methods.
27 28 29 30 31 32 33 |
# File 'lib/neovim/remote_object.rb', line 27 def method_missing(method_name, *args) if (func = @api.function_for_object_method(self, method_name)) func.call(@session, @index, *args) else super end end |