Method: Neovim::RemoteObject#method_missing

Defined in:
lib/neovim/remote_object.rb

#method_missing(method_name, *args) ⇒ Object

Intercept method calls and delegate to appropriate RPC methods.

[View source] [View on GitHub]

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