Method: Neovim::OptionAccess#set_option

Defined in:
lib/neovim/remote_object.rb

#set_option(*args, **kwargs) ⇒ Object Also known as: set_options



23
24
25
26
27
28
# File 'lib/neovim/remote_object.rb', line 23

def set_option *args, **kwargs
  op = option_params
  args.each   { |a|   call_api :set_option_value, a, true, op }
  kwargs.each { |k,v| call_api :set_option_value, k, v,    op }
  nil
end