Class: Neovim::Client

Inherits:
Object show all
Defined in:
lib/neovim/client.rb

Overview

Client to a running nvim instance. The interface is generated at runtime via the nvim_get_api_info RPC call. Some methods return RemoteObject subclasses (i.e. Buffer, Window, or Tabpage), which similarly have dynamically generated interfaces.

The methods documented here were generated using NVIM v0.9.2

See Also:

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(session, api) ⇒ Client

Returns a new instance of Client.



27
28
29
30
# File 'lib/neovim/client.rb', line 27

def initialize(session, api)
  @session = session
  @api = api
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method_name, *args) ⇒ Object

Intercept method calls and delegate to appropriate RPC methods.



37
38
39
40
41
42
43
# File 'lib/neovim/client.rb', line 37

def method_missing(method_name, *args)
  if (func = @api.function_for_object_method(self, method_name))
    func.call(@session, *args)
  else
    super
  end
end

Instance Attribute Details

#apiObject (readonly)

Returns the value of attribute api.



18
19
20
# File 'lib/neovim/client.rb', line 18

def api
  @api
end

#sessionObject (readonly)

Returns the value of attribute session.



18
19
20
# File 'lib/neovim/client.rb', line 18

def session
  @session
end

Class Method Details

.from_event_loop(event_loop, session = Session.new(event_loop)) ⇒ Object



20
21
22
23
24
25
# File 'lib/neovim/client.rb', line 20

def self.from_event_loop(event_loop, session=Session.new(event_loop))
  api = API.new(session.request(:nvim_get_api_info))
  event_loop.register_types(api, session)

  new(session, api)
end

Instance Method Details

#call_atomic(calls) ⇒ Array

See :h nvim_call_atomic()

Parameters:

  • calls (Array)

Returns:

  • (Array)


# File 'lib/neovim/client.rb', line 120

#call_dict_function(dict, fn, args) ⇒ Object

See :h nvim_call_dict_function()

Parameters:

  • dict (Object)
  • fn (String)
  • args (Array)

Returns:



# File 'lib/neovim/client.rb', line 120

#call_function(fn, args) ⇒ Object

See :h nvim_call_function()

Parameters:

  • fn (String)
  • args (Array)

Returns:



# File 'lib/neovim/client.rb', line 120

#chan_send(chan, data) ⇒ void

This method returns an undefined value.

See :h nvim_chan_send()

Parameters:

  • chan (Integer)
  • data (String)


# File 'lib/neovim/client.rb', line 120

#channel_idObject



32
33
34
# File 'lib/neovim/client.rb', line 32

def channel_id
  @api.channel_id
end

#clear_autocmds(opts) ⇒ void

This method returns an undefined value.

See :h nvim_clear_autocmds()

Parameters:

  • opts (Hash)


# File 'lib/neovim/client.rb', line 120

#cmd(cmd, opts) ⇒ String

See :h nvim_cmd()

Parameters:

  • cmd (Hash)
  • opts (Hash)

Returns:

  • (String)


# File 'lib/neovim/client.rb', line 120

#command(command) ⇒ void

This method returns an undefined value.

See :h nvim_command()

Parameters:

  • command (String)


# File 'lib/neovim/client.rb', line 120

#command_output(command) ⇒ String

See :h nvim_command_output()

Parameters:

  • command (String)

Returns:

  • (String)


# File 'lib/neovim/client.rb', line 120

#create_augroup(name, opts) ⇒ Integer

See :h nvim_create_augroup()

Parameters:

  • name (String)
  • opts (Hash)

Returns:

  • (Integer)


# File 'lib/neovim/client.rb', line 120

#create_autocmd(event, opts) ⇒ Integer

See :h nvim_create_autocmd()

Parameters:

Returns:

  • (Integer)


# File 'lib/neovim/client.rb', line 120

#create_buf(listed, scratch) ⇒ Buffer

See :h nvim_create_buf()

Parameters:

  • listed (Boolean)
  • scratch (Boolean)

Returns:



# File 'lib/neovim/client.rb', line 120

#create_namespace(name) ⇒ Integer

See :h nvim_create_namespace()

Parameters:

  • name (String)

Returns:

  • (Integer)


# File 'lib/neovim/client.rb', line 120

#create_user_command(name, command, opts) ⇒ void

This method returns an undefined value.

See :h nvim_create_user_command()

Parameters:

  • name (String)
  • command (Object)
  • opts (Hash)


# File 'lib/neovim/client.rb', line 120

#currentCurrent

Access to objects belonging to the current nvim context.

Examples:

Get the current buffer

client.current.buffer

Set the current line

client.current.line = "New line"

Returns:

See Also:



63
64
65
# File 'lib/neovim/client.rb', line 63

def current
  @current ||= Current.new(@session)
end

#del_augroup_by_id(id) ⇒ void

This method returns an undefined value.

See :h nvim_del_augroup_by_id()

Parameters:

  • id (Integer)


# File 'lib/neovim/client.rb', line 120

#del_augroup_by_name(name) ⇒ void

This method returns an undefined value.

See :h nvim_del_augroup_by_name()

Parameters:

  • name (String)


# File 'lib/neovim/client.rb', line 120

#del_autocmd(id) ⇒ void

This method returns an undefined value.

See :h nvim_del_autocmd()

Parameters:

  • id (Integer)


# File 'lib/neovim/client.rb', line 120

#del_current_linevoid

This method returns an undefined value.

See :h nvim_del_current_line()



# File 'lib/neovim/client.rb', line 120

#del_keymap(mode, lhs) ⇒ void

This method returns an undefined value.

See :h nvim_del_keymap()

Parameters:

  • mode (String)
  • lhs (String)


# File 'lib/neovim/client.rb', line 120

#del_mark(name) ⇒ Boolean

See :h nvim_del_mark()

Parameters:

  • name (String)

Returns:

  • (Boolean)


# File 'lib/neovim/client.rb', line 120

#del_user_command(name) ⇒ void

This method returns an undefined value.

See :h nvim_del_user_command()

Parameters:

  • name (String)


# File 'lib/neovim/client.rb', line 120

#del_var(name) ⇒ void

This method returns an undefined value.

See :h nvim_del_var()

Parameters:

  • name (String)


# File 'lib/neovim/client.rb', line 120

#echo(chunks, history, opts) ⇒ void

This method returns an undefined value.

See :h nvim_echo()

Parameters:

  • chunks (Array)
  • history (Boolean)
  • opts (Hash)


# File 'lib/neovim/client.rb', line 120

#err_write(str) ⇒ void

This method returns an undefined value.

See :h nvim_err_write()

Parameters:

  • str (String)


# File 'lib/neovim/client.rb', line 120

#err_writeln(str) ⇒ void

This method returns an undefined value.

See :h nvim_err_writeln()

Parameters:

  • str (String)


# File 'lib/neovim/client.rb', line 120

#eval(expr) ⇒ Object

See :h nvim_eval()

Parameters:

  • expr (String)

Returns:



# File 'lib/neovim/client.rb', line 120

#eval_statusline(str, opts) ⇒ Hash

See :h nvim_eval_statusline()

Parameters:

  • str (String)
  • opts (Hash)

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#evaluate(expr) ⇒ Object

Evaluate the VimL expression (alias for nvim_eval).

Examples:

Return a list from VimL

client.evaluate('[1, 2]') # => [1, 2]

Parameters:

  • expr (String)

    A VimL expression.

Returns:



73
74
75
# File 'lib/neovim/client.rb', line 73

def evaluate(expr)
  @api.function_for_object_method(self, :eval).call(@session, expr)
end

#exec(src, output) ⇒ String

See :h nvim_exec()

Parameters:

  • src (String)
  • output (Boolean)

Returns:

  • (String)


# File 'lib/neovim/client.rb', line 120

#exec2(src, opts) ⇒ Hash

See :h nvim_exec2()

Parameters:

  • src (String)
  • opts (Hash)

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#exec_autocmds(event, opts) ⇒ void

This method returns an undefined value.

See :h nvim_exec_autocmds()

Parameters:



# File 'lib/neovim/client.rb', line 120

#exec_lua(code, args) ⇒ Object

See :h nvim_exec_lua()

Parameters:

  • code (String)
  • args (Array)

Returns:



# File 'lib/neovim/client.rb', line 120

#execute_lua(code, args) ⇒ Object

See :h nvim_execute_lua()

Parameters:

  • code (String)
  • args (Array)

Returns:



# File 'lib/neovim/client.rb', line 120

#feedkeys(keys, mode, escape_ks) ⇒ void

This method returns an undefined value.

See :h nvim_feedkeys()

Parameters:

  • keys (String)
  • mode (String)
  • escape_ks (Boolean)


# File 'lib/neovim/client.rb', line 120

#get_all_options_infoHash

See :h nvim_get_all_options_info()

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#get_api_infoArray

See :h nvim_get_api_info()

Returns:

  • (Array)


# File 'lib/neovim/client.rb', line 120

#get_autocmds(opts) ⇒ Array

See :h nvim_get_autocmds()

Parameters:

  • opts (Hash)

Returns:

  • (Array)


# File 'lib/neovim/client.rb', line 120

#get_chan_info(chan) ⇒ Hash

See :h nvim_get_chan_info()

Parameters:

  • chan (Integer)

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#get_color_by_name(name) ⇒ Integer

See :h nvim_get_color_by_name()

Parameters:

  • name (String)

Returns:

  • (Integer)


# File 'lib/neovim/client.rb', line 120

#get_color_mapHash

See :h nvim_get_color_map()

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#get_commands(opts) ⇒ Hash

See :h nvim_get_commands()

Parameters:

  • opts (Hash)

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#get_context(opts) ⇒ Hash

See :h nvim_get_context()

Parameters:

  • opts (Hash)

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#get_current_bufBuffer

See :h nvim_get_current_buf()

Returns:



# File 'lib/neovim/client.rb', line 120

#get_current_lineString

See :h nvim_get_current_line()

Returns:

  • (String)


# File 'lib/neovim/client.rb', line 120

#get_current_tabpageTabpage

See :h nvim_get_current_tabpage()

Returns:



# File 'lib/neovim/client.rb', line 120

#get_current_winWindow

See :h nvim_get_current_win()

Returns:



# File 'lib/neovim/client.rb', line 120

#get_hl(ns_id, opts) ⇒ Hash

See :h nvim_get_hl()

Parameters:

  • ns_id (Integer)
  • opts (Hash)

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#get_hl_by_id(hl_id, rgb) ⇒ Hash

See :h nvim_get_hl_by_id()

Parameters:

  • hl_id (Integer)
  • rgb (Boolean)

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#get_hl_by_name(name, rgb) ⇒ Hash

See :h nvim_get_hl_by_name()

Parameters:

  • name (String)
  • rgb (Boolean)

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#get_hl_id_by_name(name) ⇒ Integer

See :h nvim_get_hl_id_by_name()

Parameters:

  • name (String)

Returns:

  • (Integer)


# File 'lib/neovim/client.rb', line 120

#get_keymap(mode) ⇒ Array<Hash>

See :h nvim_get_keymap()

Parameters:

  • mode (String)

Returns:

  • (Array<Hash>)


# File 'lib/neovim/client.rb', line 120

#get_mark(name, opts) ⇒ Array

See :h nvim_get_mark()

Parameters:

  • name (String)
  • opts (Hash)

Returns:

  • (Array)


# File 'lib/neovim/client.rb', line 120

#get_modeHash

See :h nvim_get_mode()

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#get_namespacesHash

See :h nvim_get_namespaces()

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#get_option(name) ⇒ Object

See :h nvim_get_option()

Parameters:

  • name (String)

Returns:



# File 'lib/neovim/client.rb', line 120

#get_option_info(name) ⇒ Hash

See :h nvim_get_option_info()

Parameters:

  • name (String)

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#get_option_info2(name, opts) ⇒ Hash

See :h nvim_get_option_info2()

Parameters:

  • name (String)
  • opts (Hash)

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#get_option_value(name, opts) ⇒ Object

See :h nvim_get_option_value()

Parameters:

  • name (String)
  • opts (Hash)

Returns:



# File 'lib/neovim/client.rb', line 120

#get_proc(pid) ⇒ Object

See :h nvim_get_proc()

Parameters:

  • pid (Integer)

Returns:



# File 'lib/neovim/client.rb', line 120

#get_proc_children(pid) ⇒ Array

See :h nvim_get_proc_children()

Parameters:

  • pid (Integer)

Returns:

  • (Array)


# File 'lib/neovim/client.rb', line 120

#get_runtime_file(name, all) ⇒ Array<String>

See :h nvim_get_runtime_file()

Parameters:

  • name (String)
  • all (Boolean)

Returns:

  • (Array<String>)


# File 'lib/neovim/client.rb', line 120

#get_var(name) ⇒ Object

See :h nvim_get_var()

Parameters:

  • name (String)

Returns:



# File 'lib/neovim/client.rb', line 120

#get_vvar(name) ⇒ Object

See :h nvim_get_vvar()

Parameters:

  • name (String)

Returns:



# File 'lib/neovim/client.rb', line 120

#input(keys) ⇒ Integer

See :h nvim_input()

Parameters:

  • keys (String)

Returns:

  • (Integer)


# File 'lib/neovim/client.rb', line 120

#input_mouse(button, action, modifier, grid, row, col) ⇒ void

This method returns an undefined value.

See :h nvim_input_mouse()

Parameters:

  • button (String)
  • action (String)
  • modifier (String)
  • grid (Integer)
  • row (Integer)
  • col (Integer)


# File 'lib/neovim/client.rb', line 120

#list_bufsArray<Buffer>

See :h nvim_list_bufs()

Returns:



# File 'lib/neovim/client.rb', line 120

#list_chansArray

See :h nvim_list_chans()

Returns:

  • (Array)


# File 'lib/neovim/client.rb', line 120

#list_runtime_pathsArray<String>

See :h nvim_list_runtime_paths()

Returns:

  • (Array<String>)


# File 'lib/neovim/client.rb', line 120

#list_tabpagesArray<Tabpage>

See :h nvim_list_tabpages()

Returns:



# File 'lib/neovim/client.rb', line 120

#list_uisArray

See :h nvim_list_uis()

Returns:

  • (Array)


# File 'lib/neovim/client.rb', line 120

#list_winsArray<Window>

See :h nvim_list_wins()

Returns:



# File 'lib/neovim/client.rb', line 120

#load_context(dict) ⇒ Object

See :h nvim_load_context()

Parameters:

  • dict (Hash)

Returns:



# File 'lib/neovim/client.rb', line 120

#message(string) ⇒ void

This method returns an undefined value.

Display a message.

Parameters:

  • string (String)

    The message.



81
82
83
# File 'lib/neovim/client.rb', line 81

def message(string)
  out_write(string)
end

#methods(*args) ⇒ Object

Extend methods to include RPC methods.



51
52
53
# File 'lib/neovim/client.rb', line 51

def methods(*args)
  super | rpc_methods.to_a
end

#notify(msg, log_level, opts) ⇒ Object

See :h nvim_notify()

Parameters:

  • msg (String)
  • log_level (Integer)
  • opts (Hash)

Returns:



# File 'lib/neovim/client.rb', line 120

#open_term(buffer, opts) ⇒ Integer

See :h nvim_open_term()

Parameters:

Returns:

  • (Integer)


# File 'lib/neovim/client.rb', line 120

#open_win(buffer, enter, config) ⇒ Window

See :h nvim_open_win()

Parameters:

  • buffer (Buffer)
  • enter (Boolean)
  • config (Hash)

Returns:



# File 'lib/neovim/client.rb', line 120

#out_write(str) ⇒ void

This method returns an undefined value.

See :h nvim_out_write()

Parameters:

  • str (String)


# File 'lib/neovim/client.rb', line 120

#parse_cmd(str, opts) ⇒ Hash

See :h nvim_parse_cmd()

Parameters:

  • str (String)
  • opts (Hash)

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#parse_expression(expr, flags, highlight) ⇒ Hash

See :h nvim_parse_expression()

Parameters:

  • expr (String)
  • flags (String)
  • highlight (Boolean)

Returns:

  • (Hash)


# File 'lib/neovim/client.rb', line 120

#paste(data, crlf, phase) ⇒ Boolean

See :h nvim_paste()

Parameters:

  • data (String)
  • crlf (Boolean)
  • phase (Integer)

Returns:

  • (Boolean)


# File 'lib/neovim/client.rb', line 120

#put(lines, type, after, follow) ⇒ void

This method returns an undefined value.

See :h nvim_put()

Parameters:

  • lines (Array<String>)
  • type (String)
  • after (Boolean)
  • follow (Boolean)


# File 'lib/neovim/client.rb', line 120

#replace_termcodes(str, from_part, do_lt, special) ⇒ String

See :h nvim_replace_termcodes()

Parameters:

  • str (String)
  • from_part (Boolean)
  • do_lt (Boolean)
  • special (Boolean)

Returns:

  • (String)


# File 'lib/neovim/client.rb', line 120

#respond_to_missing?(method_name) ⇒ Boolean

Extend respond_to_missing? to support RPC methods.

Returns:

  • (Boolean)


46
47
48
# File 'lib/neovim/client.rb', line 46

def respond_to_missing?(method_name, *)
  super || rpc_methods.include?(method_name.to_sym)
end

#select_popupmenu_item(item, insert, finish, opts) ⇒ void

This method returns an undefined value.

See :h nvim_select_popupmenu_item()

Parameters:

  • item (Integer)
  • insert (Boolean)
  • finish (Boolean)
  • opts (Hash)


# File 'lib/neovim/client.rb', line 120

#set_client_info(name, version, type, methods, attributes) ⇒ void

This method returns an undefined value.

See :h nvim_set_client_info()

Parameters:

  • name (String)
  • version (Hash)
  • type (String)
  • methods (Hash)
  • attributes (Hash)


# File 'lib/neovim/client.rb', line 120

#set_current_buf(buffer) ⇒ void

This method returns an undefined value.

See :h nvim_set_current_buf()

Parameters:



# File 'lib/neovim/client.rb', line 120

#set_current_dir(dir) ⇒ void

This method returns an undefined value.

See :h nvim_set_current_dir()

Parameters:

  • dir (String)


# File 'lib/neovim/client.rb', line 120

#set_current_line(line) ⇒ void

This method returns an undefined value.

See :h nvim_set_current_line()

Parameters:

  • line (String)


# File 'lib/neovim/client.rb', line 120

#set_current_tabpage(tabpage) ⇒ void

This method returns an undefined value.

See :h nvim_set_current_tabpage()

Parameters:



# File 'lib/neovim/client.rb', line 120

#set_current_win(window) ⇒ void

This method returns an undefined value.

See :h nvim_set_current_win()

Parameters:



# File 'lib/neovim/client.rb', line 120

#set_decoration_provider(ns_id, opts) ⇒ void

This method returns an undefined value.

See :h nvim_set_decoration_provider()

Parameters:

  • ns_id (Integer)
  • opts (Hash)


# File 'lib/neovim/client.rb', line 120

#set_hl(ns_id, name, val) ⇒ void

This method returns an undefined value.

See :h nvim_set_hl()

Parameters:

  • ns_id (Integer)
  • name (String)
  • val (Hash)


# File 'lib/neovim/client.rb', line 120

#set_hl_ns(ns_id) ⇒ void

This method returns an undefined value.

See :h nvim_set_hl_ns()

Parameters:

  • ns_id (Integer)


# File 'lib/neovim/client.rb', line 120

#set_hl_ns_fast(ns_id) ⇒ void

This method returns an undefined value.

See :h nvim_set_hl_ns_fast()

Parameters:

  • ns_id (Integer)


# File 'lib/neovim/client.rb', line 120

#set_keymap(mode, lhs, rhs, opts) ⇒ void

This method returns an undefined value.

See :h nvim_set_keymap()

Parameters:

  • mode (String)
  • lhs (String)
  • rhs (String)
  • opts (Hash)


# File 'lib/neovim/client.rb', line 120

#set_option(key, value) ⇒ Object #set_option(optstr) ⇒ Object

Set an option.

Examples:

Set the timeoutlen option

client.set_option("timeoutlen", 0)
client.set_option("timeoutlen=0")

Overloads:

  • #set_option(key, value) ⇒ Object

    Parameters:

    • key (String)
    • value (String)
  • #set_option(optstr) ⇒ Object

    Parameters:

    • optstr (String)


97
98
99
100
101
102
103
# File 'lib/neovim/client.rb', line 97

def set_option(*args)
  if args.size > 1
    @api.function_for_object_method(self, :set_option).call(@session, *args)
  else
    @api.function_for_object_method(self, :command).call(@session, "set #{args.first}")
  end
end

#set_option_value(name, value, opts) ⇒ void

This method returns an undefined value.

See :h nvim_set_option_value()

Parameters:

  • name (String)
  • value (Object)
  • opts (Hash)


# File 'lib/neovim/client.rb', line 120

#set_var(name, value) ⇒ void

This method returns an undefined value.

See :h nvim_set_var()

Parameters:

  • name (String)
  • value (Object)


# File 'lib/neovim/client.rb', line 120

#set_vvar(name, value) ⇒ void

This method returns an undefined value.

See :h nvim_set_vvar()

Parameters:

  • name (String)
  • value (Object)


# File 'lib/neovim/client.rb', line 120

#shutdownObject



105
106
107
# File 'lib/neovim/client.rb', line 105

def shutdown
  @session.shutdown
end

#strwidth(text) ⇒ Integer

See :h nvim_strwidth()

Parameters:

  • text (String)

Returns:

  • (Integer)


# File 'lib/neovim/client.rb', line 120

#subscribe(event) ⇒ void

This method returns an undefined value.

See :h nvim_subscribe()

Parameters:

  • event (String)


# File 'lib/neovim/client.rb', line 120

#ui_attach(width, height, options) ⇒ void

This method returns an undefined value.

See :h nvim_ui_attach()

Parameters:

  • width (Integer)
  • height (Integer)
  • options (Hash)


# File 'lib/neovim/client.rb', line 120

#ui_detachvoid

This method returns an undefined value.

See :h nvim_ui_detach()



# File 'lib/neovim/client.rb', line 120

#ui_pum_set_bounds(width, height, row, col) ⇒ void

This method returns an undefined value.

See :h nvim_ui_pum_set_bounds()

Parameters:

  • width (Float)
  • height (Float)
  • row (Float)
  • col (Float)


# File 'lib/neovim/client.rb', line 120

#ui_pum_set_height(height) ⇒ void

This method returns an undefined value.

See :h nvim_ui_pum_set_height()

Parameters:

  • height (Integer)


# File 'lib/neovim/client.rb', line 120

#ui_set_focus(gained) ⇒ void

This method returns an undefined value.

See :h nvim_ui_set_focus()

Parameters:

  • gained (Boolean)


# File 'lib/neovim/client.rb', line 120

#ui_set_option(name, value) ⇒ void

This method returns an undefined value.

See :h nvim_ui_set_option()

Parameters:

  • name (String)
  • value (Object)


# File 'lib/neovim/client.rb', line 120

#ui_try_resize(width, height) ⇒ void

This method returns an undefined value.

See :h nvim_ui_try_resize()

Parameters:

  • width (Integer)
  • height (Integer)


# File 'lib/neovim/client.rb', line 120

#ui_try_resize_grid(grid, width, height) ⇒ void

This method returns an undefined value.

See :h nvim_ui_try_resize_grid()

Parameters:

  • grid (Integer)
  • width (Integer)
  • height (Integer)


# File 'lib/neovim/client.rb', line 120

#unsubscribe(event) ⇒ void

This method returns an undefined value.

See :h nvim_unsubscribe()

Parameters:

  • event (String)


# File 'lib/neovim/client.rb', line 120