Module: Vim
- Defined in:
- lib/neovim/ruby_provider.rb
Overview
The VIM module as documented in “:h ruby”.
Defined Under Namespace
Class Method Summary collapse
- .command(arg) ⇒ Object
- .evaluate(expr) ⇒ Object
- .message(str) ⇒ Object
- .set_option(*args, **kwargs) ⇒ Object (also: set_options)
Class Method Details
.command(arg) ⇒ Object
42 |
# File 'lib/neovim/ruby_provider.rb', line 42 def command arg ; $vim.command arg ; end |
.evaluate(expr) ⇒ Object
43 |
# File 'lib/neovim/ruby_provider.rb', line 43 def evaluate expr ; $vim.evaluate expr ; end |
.message(str) ⇒ Object
39 |
# File 'lib/neovim/ruby_provider.rb', line 39 def str ; $vim. str ; end |
.set_option(*args, **kwargs) ⇒ Object Also known as: set_options
40 |
# File 'lib/neovim/ruby_provider.rb', line 40 def set_option *args, **kwargs ; $vim.set_option *args, **kwargs ; end |