Module: Neovim
- Defined in:
- lib/neovim.rb,
lib/neovim/api.rb,
lib/neovim/host.rb,
lib/neovim/buffer.rb,
lib/neovim/client.rb,
lib/neovim/plugin.rb,
lib/neovim/window.rb,
lib/neovim/current.rb,
lib/neovim/logging.rb,
lib/neovim/message.rb,
lib/neovim/session.rb,
lib/neovim/tabpage.rb,
lib/neovim/version.rb,
lib/neovim/connection.rb,
lib/neovim/event_loop.rb,
lib/neovim/executable.rb,
lib/neovim/line_range.rb,
lib/neovim/plugin/dsl.rb,
lib/neovim/host/loader.rb,
lib/neovim/remote_object.rb,
lib/neovim/ruby_provider.rb,
lib/neovim/plugin/handler.rb,
lib/neovim/ruby_provider/buffer_ext.rb,
lib/neovim/ruby_provider/window_ext.rb
Overview
The main entrypoint to the Neovim gem. It allows you to connect to a running nvim instance programmatically or define a remote plugin to be autoloaded by nvim.
You can connect to a running nvim instance by setting or inspecting the NVIM_LISTEN_ADDRESS environment variable and connecting via the appropriate attach_ method. This is currently supported for both UNIX domain sockets and TCP. You can also spawn and connect to an nvim subprocess via Neovim.attach_child(argv).
You can define a remote plugin using the Neovim.plugin DSL, which allows you to register commands, functions, and autocmds. Plugins are autoloaded by nvim from the rplugin/ruby directory in your nvim runtime path.
Defined Under Namespace
Modules: Logging, RubyProvider Classes: API, Buffer, Client, Connection, Current, EventLoop, Executable, Host, LineRange, Message, Plugin, RemoteObject, Session, Tabpage, Window
Constant Summary collapse
- VERSION =
Gem::Version.new("0.7.0")
Class Method Summary collapse
-
.attach_child(argv = [executable.path]) ⇒ Client
Spawn and connect to a child
nvimprocess. -
.attach_tcp(host, port) ⇒ Client
Connect to a running
nviminstance over TCP. -
.attach_unix(socket_path) ⇒ Client
Connect to a running
nviminstance over a UNIX domain socket. -
.executable ⇒ Executable
Return a
Neovim::Executablerepresenting the activenvimexecutable. -
.logger ⇒ Logger
The Neovim global logger.
-
.logger=(logger) ⇒ Logger
Set the Neovim global logger.
-
.plugin ⇒ Object
Placeholder method for exposing the remote plugin DSL.
Instance Method Summary collapse
-
#del_var(tabpage, name) ⇒ void
See :h nvim_tabpage_del_var().
-
#get_number(tabpage) ⇒ Integer
See :h nvim_tabpage_get_number().
-
#get_var(tabpage, name) ⇒ Object
See :h nvim_tabpage_get_var().
-
#get_win(tabpage) ⇒ Window
See :h nvim_tabpage_get_win().
-
#is_valid(tabpage) ⇒ Boolean
See :h nvim_tabpage_is_valid().
-
#list_wins(tabpage) ⇒ Array<Window>
See :h nvim_tabpage_list_wins().
-
#set_var(tabpage, name, value) ⇒ void
See :h nvim_tabpage_set_var().
Class Method Details
.attach_child(argv = [executable.path]) ⇒ Client
Spawn and connect to a child nvim process.
82 83 84 |
# File 'lib/neovim.rb', line 82 def self.attach_child(argv=[executable.path]) Client.from_event_loop EventLoop.child(argv) end |
.attach_tcp(host, port) ⇒ Client
Connect to a running nvim instance over TCP.
64 65 66 |
# File 'lib/neovim.rb', line 64 def self.attach_tcp(host, port) Client.from_event_loop EventLoop.tcp(host, port) end |
.attach_unix(socket_path) ⇒ Client
Connect to a running nvim instance over a UNIX domain socket.
73 74 75 |
# File 'lib/neovim.rb', line 73 def self.attach_unix(socket_path) Client.from_event_loop EventLoop.unix(socket_path) end |
.executable ⇒ Executable
Return a Neovim::Executable representing the active nvim executable.
99 100 101 |
# File 'lib/neovim.rb', line 99 def self.executable @executable ||= Executable.from_env end |
.logger ⇒ Logger
The Neovim global logger.
116 117 118 |
# File 'lib/neovim.rb', line 116 def self.logger Logging.logger end |
.logger=(logger) ⇒ Logger
Set the Neovim global logger.
108 109 110 |
# File 'lib/neovim.rb', line 108 def self.logger=(logger) Logging.logger = logger end |
.plugin ⇒ Object
Placeholder method for exposing the remote plugin DSL. This gets temporarily overwritten in Host::Loader#load.
91 92 93 |
# File 'lib/neovim.rb', line 91 def self.plugin raise "Can't call Neovim.plugin outside of a plugin host." end |
Instance Method Details
#del_var(tabpage, name) ⇒ void
This method returns an undefined value.
See :h nvim_tabpage_del_var()
|
|
# File 'lib/neovim/tabpage.rb', line 10
|
#get_number(tabpage) ⇒ Integer
See :h nvim_tabpage_get_number()
|
|
# File 'lib/neovim/tabpage.rb', line 10
|
#get_var(tabpage, name) ⇒ Object
See :h nvim_tabpage_get_var()
|
|
# File 'lib/neovim/tabpage.rb', line 10
|
#is_valid(tabpage) ⇒ Boolean
See :h nvim_tabpage_is_valid()
|
|
# File 'lib/neovim/tabpage.rb', line 10
|
#list_wins(tabpage) ⇒ Array<Window>
See :h nvim_tabpage_list_wins()
|
|
# File 'lib/neovim/tabpage.rb', line 10
|
#set_var(tabpage, name, value) ⇒ void
This method returns an undefined value.
See :h nvim_tabpage_set_var()
|
|
# File 'lib/neovim/tabpage.rb', line 10
|