Module: Vim
- Defined in:
- lib/neovim/ruby_provider.rb
Overview
The VIM module as documented in “:h ruby”.
Constant Summary collapse
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
41 |
# File 'lib/neovim/ruby_provider.rb', line 41 def command arg ; $vim.command arg ; end |
.evaluate(expr) ⇒ Object
42 |
# File 'lib/neovim/ruby_provider.rb', line 42 def evaluate expr ; $vim.evaluate expr ; end |
.message(str) ⇒ Object
38 |
# File 'lib/neovim/ruby_provider.rb', line 38 def str ; $vim. str ; end |
.set_option(*args, **kwargs) ⇒ Object Also known as: set_options
39 |
# File 'lib/neovim/ruby_provider.rb', line 39 def set_option *args, **kwargs ; $vim.set_option *args, **kwargs ; end |