diff options
| author | Javier Lopez <graulopezjavier@gmail.com> | 2021-11-30 09:27:12 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-30 09:27:12 -0500 |
| commit | cea6e0b0f6c7daf671b478bd58571768d0385711 (patch) | |
| tree | 2ad11ab0887274b6e786e3750f2e944308e21989 /doc | |
| parent | chore: use client.request instead of buf_request (#1503) (diff) | |
| download | nvim-lspconfig-cea6e0b0f6c7daf671b478bd58571768d0385711.tar nvim-lspconfig-cea6e0b0f6c7daf671b478bd58571768d0385711.tar.gz nvim-lspconfig-cea6e0b0f6c7daf671b478bd58571768d0385711.tar.bz2 nvim-lspconfig-cea6e0b0f6c7daf671b478bd58571768d0385711.tar.lz nvim-lspconfig-cea6e0b0f6c7daf671b478bd58571768d0385711.tar.xz nvim-lspconfig-cea6e0b0f6c7daf671b478bd58571768d0385711.tar.zst nvim-lspconfig-cea6e0b0f6c7daf671b478bd58571768d0385711.zip | |
fix(help): workaround plugin/users overwritting tags (#1512)
Most plugin managers run :helptags in the plugin, which silently
overwrites the existing doc/tags. this is an issue for us since lspconfig
is manipulating the tags file to point to servers_configurations.md
Instead create a markdown comment with the name of the wanted tag and
make a copy in the repository of servers_configurations.md to
server_configurations.txt. Now when :helptags runs it finds the txt file
and generates the appropriate tag.
The advantage is this solution should work in all platforms, it also
removes lines from docgen CI.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/server_configurations.txt | 0 | ||||
| -rw-r--r-- | doc/tags | 21 |
2 files changed, 0 insertions, 21 deletions
diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/doc/server_configurations.txt diff --git a/doc/tags b/doc/tags deleted file mode 100644 index d4137d7b..00000000 --- a/doc/tags +++ /dev/null @@ -1,21 +0,0 @@ -lspconfig lspconfig.txt /*lspconfig* -lspconfig-adding-servers lspconfig.txt /*lspconfig-adding-servers* -lspconfig-commands lspconfig.txt /*lspconfig-commands* -lspconfig-completion lspconfig.txt /*lspconfig-completion* -lspconfig-configurations lspconfig.txt /*lspconfig-configurations* -lspconfig-debugging lspconfig.txt /*lspconfig-debugging* -lspconfig-global-defaults lspconfig.txt /*lspconfig-global-defaults* -lspconfig-keybindings lspconfig.txt /*lspconfig-keybindings* -lspconfig-logging lspconfig.txt /*lspconfig-logging* -lspconfig-lsp lspconfig.txt /*lspconfig-lsp* -lspconfig-quickstart lspconfig.txt /*lspconfig-quickstart* -lspconfig-root-advanced lspconfig.txt /*lspconfig-root-advanced* -lspconfig-root-composition lspconfig.txt /*lspconfig-root-composition* -lspconfig-root-detection lspconfig.txt /*lspconfig-root-detection* -lspconfig-root-dir lspconfig.txt /*lspconfig-root-dir* -lspconfig-scope lspconfig.txt /*lspconfig-scope* -lspconfig-setup lspconfig.txt /*lspconfig-setup* -lspconfig-single-file-support lspconfig.txt /*lspconfig-single-file-support* -lspconfig-toc lspconfig.txt /*lspconfig-toc* -lspconfig.txt lspconfig.txt /*lspconfig.txt* -lspconfig-server-configurations server_configurations.md /# Configurations |
