diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-12-12 00:17:27 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-12-12 01:26:21 +0100 |
commit | 61d0dfee32ce9a9fb2497b02558df02eabb61d1b (patch) | |
tree | 2c4baf45a88d58772382c99deb045897ce43e40d /runtime/doc/provider.txt | |
parent | 2b01c3a8a87a8d8ba26bc95b95441835634a2948 (diff) | |
download | rneovim-61d0dfee32ce9a9fb2497b02558df02eabb61d1b.tar.gz rneovim-61d0dfee32ce9a9fb2497b02558df02eabb61d1b.tar.bz2 rneovim-61d0dfee32ce9a9fb2497b02558df02eabb61d1b.zip |
provider: repurpose E319
In Vim (and some vestigial parts of Nvim) E319 was a placeholder for
ex_ni commands, i.e. commands that are only available in certain builds
of Vim. That is obviously counter to Nvim's goals: all Nvim commands
are available on all platforms and build types (the remaining ex_ni
commands are actually just missing providers).
We need an error id for "missing provider", so it makes sense to use
E319 for that purpose.
ref #9344
ref #3577
Diffstat (limited to 'runtime/doc/provider.txt')
-rw-r--r-- | runtime/doc/provider.txt | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/runtime/doc/provider.txt b/runtime/doc/provider.txt index 930c73d06e..6ed3c230b9 100644 --- a/runtime/doc/provider.txt +++ b/runtime/doc/provider.txt @@ -4,14 +4,21 @@ NVIM REFERENCE MANUAL by Thiago de Arruda -Providers *provider* +Providers *provider* -Nvim delegates some features to dynamic "providers". +Nvim delegates some features to dynamic "providers". This document describes +the providers and how to install them. + *E319* +Use of a feature requiring a missing provider is an error: > + + E319: No "foo" provider found. Run ":checkhealth provider" + +Run the |:checkhealth| command, and review the sections below. Type |gO| to see the table of contents. ============================================================================== -Python integration *provider-python* +Python integration *provider-python* Nvim supports Python |remote-plugin|s and the Vim legacy |python2| and |python3| interfaces (which are implemented as remote-plugins). |