diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2020-01-20 17:27:28 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-20 17:27:28 -0800 |
| commit | 99aec382596bffaa91d0a944dc9474e42331ad93 (patch) | |
| tree | 6da5117b428b925fdb46386c8c02b84a92cff6a3 /runtime/doc | |
| parent | f245c0218adc9ff3452660dff97e62cea8e9a411 (diff) | |
| parent | b4e4ed844a25aa0ec43404e4ec318d0b54e0e1dd (diff) | |
| download | rneovim-99aec382596bffaa91d0a944dc9474e42331ad93.tar.gz rneovim-99aec382596bffaa91d0a944dc9474e42331ad93.tar.bz2 rneovim-99aec382596bffaa91d0a944dc9474e42331ad93.zip | |
Merge #11703 'CI: install perl provider'
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/provider.txt | 25 |
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. |