diff options
-rw-r--r-- | runtime/autoload/provider/python.vim | 2 | ||||
-rw-r--r-- | runtime/autoload/provider/python3.vim | 2 | ||||
-rw-r--r-- | runtime/doc/nvim.txt | 2 | ||||
-rw-r--r-- | runtime/doc/provider.txt (renamed from runtime/doc/nvim_provider.txt) | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/runtime/autoload/provider/python.vim b/runtime/autoload/provider/python.vim index cb9d5c5296..b99a046375 100644 --- a/runtime/autoload/provider/python.vim +++ b/runtime/autoload/provider/python.vim @@ -1,5 +1,5 @@ " The Python provider uses a Python host to emulate an environment for running -" python-vim plugins. See ":help nvim-provider" for more information. +" python-vim plugins. See ":help provider". " " Associating the plugin with the Python host is the first step because plugins " will be passed as command-line arguments diff --git a/runtime/autoload/provider/python3.vim b/runtime/autoload/provider/python3.vim index f4a751e7a2..4f47a03a9b 100644 --- a/runtime/autoload/provider/python3.vim +++ b/runtime/autoload/provider/python3.vim @@ -1,5 +1,5 @@ " The Python3 provider uses a Python3 host to emulate an environment for running -" python3 plugins. See ":help nvim-provider" for more information. +" python3 plugins. See ":help provider". " " Associating the plugin with the Python3 host is the first step because " plugins will be passed as command-line arguments diff --git a/runtime/doc/nvim.txt b/runtime/doc/nvim.txt index 5f41b8611b..00740dbe93 100644 --- a/runtime/doc/nvim.txt +++ b/runtime/doc/nvim.txt @@ -17,7 +17,7 @@ see |help.txt|. 5. Python plugins |nvim-python| 6. Clipboard integration |clipboard| 7. Remote plugins |remote-plugin| -8. Provider infrastructure |nvim-provider| +8. Provider infrastructure |provider| 9. Integrated terminal emulator |terminal-emulator| ============================================================================== diff --git a/runtime/doc/nvim_provider.txt b/runtime/doc/provider.txt index 09b3d5a3e7..c139105f28 100644 --- a/runtime/doc/nvim_provider.txt +++ b/runtime/doc/provider.txt @@ -1,10 +1,10 @@ -*nvim_provider.txt* For Nvim. {Nvim} +*provider.txt* {Nvim} NVIM REFERENCE MANUAL by Thiago de Arruda -Nvim provider infrastructure *nvim-provider* +Nvim provider infrastructure *provider* This document is for developers. If you are a normal user or plugin developer looking to learn about Nvim |rpc| for implementing plugins in other |