diff options
author | Alex Genco <alexgenco@gmail.com> | 2016-07-02 21:45:48 -0700 |
---|---|---|
committer | Alex Genco <alexgenco@gmail.com> | 2016-07-02 21:45:48 -0700 |
commit | 0a3c0205c5b9043d371133297439a11e0186585d (patch) | |
tree | 3db1e35b8e2371289a0d37e3f1384bf6541e6780 /runtime/autoload/provider/script_host.rb | |
parent | f80eb768c75de2065626203de001738e1dda436e (diff) | |
download | rneovim-0a3c0205c5b9043d371133297439a11e0186585d.tar.gz rneovim-0a3c0205c5b9043d371133297439a11e0186585d.tar.bz2 rneovim-0a3c0205c5b9043d371133297439a11e0186585d.zip |
Add :ruby, :rubyfile, and :rubydo ex commands
Diffstat (limited to 'runtime/autoload/provider/script_host.rb')
-rw-r--r-- | runtime/autoload/provider/script_host.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/runtime/autoload/provider/script_host.rb b/runtime/autoload/provider/script_host.rb new file mode 100644 index 0000000000..1dade766c7 --- /dev/null +++ b/runtime/autoload/provider/script_host.rb @@ -0,0 +1,8 @@ +begin + require "neovim/ruby_provider" +rescue LoadError + warn( + "Your neovim RubyGem is missing or out of date. " + + "Install the latest version using `gem install neovim`." + ) +end |