diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2024-10-16 12:23:13 +0200 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2024-10-18 12:30:55 +0200 |
| commit | 679d978e644778abcf7b4552f9b763c040a8f0b5 (patch) | |
| tree | bce3c06c00e604d48721e72a780c15860da8455c /.github | |
| parent | refactor: minor cleanup #3379 (diff) | |
| download | nvim-lspconfig-679d978e644778abcf7b4552f9b763c040a8f0b5.tar nvim-lspconfig-679d978e644778abcf7b4552f9b763c040a8f0b5.tar.gz nvim-lspconfig-679d978e644778abcf7b4552f9b763c040a8f0b5.tar.bz2 nvim-lspconfig-679d978e644778abcf7b4552f9b763c040a8f0b5.tar.lz nvim-lspconfig-679d978e644778abcf7b4552f9b763c040a8f0b5.tar.xz nvim-lspconfig-679d978e644778abcf7b4552f9b763c040a8f0b5.tar.zst nvim-lspconfig-679d978e644778abcf7b4552f9b763c040a8f0b5.zip | |
fix(lspinfo)!: remove config.lspinfo
Problem:
`config.lspinfo` is an undocumented feature that allows extending the
info shown in `:LspInfo` (`:checkhealth lspconfig`).
This feature is unwanted because:
- it's undocumented
- it adds a maintenance burden
- it provides info that should be derived from the LSP protocol itself.
Solution:
Remove support for `config.lspinfo`.
Instead, `:LspInfo` (`:checkhealth lspconfig`) should be enhanced to
automatically gather this kind of extra info from the server response.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 951e3016..dc12ba11 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -5,7 +5,7 @@ body: - type: markdown attributes: value: | - Do NOT file bugs in this repo. The configs in this repo are unsupported and provided only as a starting point. We depend on users (like you) to troubleshoot issues with their specific LSP setups and [send improvements](https://github.com/neovim/nvim-lspconfig/blob/master/CONTRIBUTING.md). + The configs in this repo are UNSUPPORTED and provided only as a starting point. We depend on users (like you) to troubleshoot issues with their specific LSP setups and [send improvements](https://github.com/neovim/nvim-lspconfig/blob/master/CONTRIBUTING.md). If you have a feature request or found a bug in the core Nvim `vim.lsp` module (not this repo), [report it to Nvim](https://github.com/neovim/neovim/issues/new?assignees=&labels=bug%2Clsp&projects=&template=lsp_bug_report.yml). - type: textarea |
