aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-01-18 10:59:17 -0500
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-01-20 19:43:59 -0500
commitda0cd5436b4a50e681f490ec6fc7730a894b1542 (patch)
tree71446bf41f3904a2e68a571429cd7435ee01da9e /runtime
parentff9f70a6bfe3206c258c5c25e3148fbe1afd6ed2 (diff)
downloadrneovim-da0cd5436b4a50e681f490ec6fc7730a894b1542.tar.gz
rneovim-da0cd5436b4a50e681f490ec6fc7730a894b1542.tar.bz2
rneovim-da0cd5436b4a50e681f490ec6fc7730a894b1542.zip
doc: provider-perl
Enable 'has("perl")' as an alias for 'g:loaded_perl_provider'. TODO: - +perl interface
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/provider.txt25
1 files changed, 25 insertions, 0 deletions
diff --git a/runtime/doc/provider.txt b/runtime/doc/provider.txt
index 46ff075cef..0a6cdc60e8 100644
--- a/runtime/doc/provider.txt
+++ b/runtime/doc/provider.txt
@@ -127,6 +127,31 @@ To use the RVM "system" Ruby installation: >
let g:ruby_host_prog = 'rvm system do neovim-ruby-host'
==============================================================================
+Perl integration *provider-perl*
+
+Nvim supports Perl |remote-plugin|s.
+https://github.com/jacquesg/p5-Neovim-Ext
+
+
+PERL QUICKSTART~
+
+To use perl remote-plugins with Nvim, install the "Neovim::Ext" cpan package: >
+ cpanm -n Neovim::Ext
+
+Run |:checkhealth| to see if your system is up-to-date.
+
+
+PERL PROVIDER CONFIGURATION~
+ *g:loaded_perl_provider*
+To disable Perl support: >
+ :let g:loaded_perl_provider = 0
+<
+ *g:perl_host_prog*
+Command to start the Perl executable. Must be set before any
+check for has("perl"). >
+ let g:perl_host_prog = '/path/to/perl'
+<
+==============================================================================
Node.js integration *provider-nodejs*
Nvim supports Node.js |remote-plugin|s.