diff options
| author | Michael Lingelbach <m.j.lbach@gmail.com> | 2022-01-05 11:04:18 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-05 11:04:18 -0800 |
| commit | 3b275bb7cafd7d77be5fd3cf8d46eaa3a7deddf3 (patch) | |
| tree | 82ff0fcdb2ff8fa3e4b3cd898c43ab5f66cdd0c4 /.github | |
| parent | fix(ltex): use .bat extension on Windows (#1628) (diff) | |
| download | nvim-lspconfig-3b275bb7cafd7d77be5fd3cf8d46eaa3a7deddf3.tar nvim-lspconfig-3b275bb7cafd7d77be5fd3cf8d46eaa3a7deddf3.tar.gz nvim-lspconfig-3b275bb7cafd7d77be5fd3cf8d46eaa3a7deddf3.tar.bz2 nvim-lspconfig-3b275bb7cafd7d77be5fd3cf8d46eaa3a7deddf3.tar.lz nvim-lspconfig-3b275bb7cafd7d77be5fd3cf8d46eaa3a7deddf3.tar.xz nvim-lspconfig-3b275bb7cafd7d77be5fd3cf8d46eaa3a7deddf3.tar.zst nvim-lspconfig-3b275bb7cafd7d77be5fd3cf8d46eaa3a7deddf3.zip | |
chore: remove healthcheck (#1636)
Previously, lspconfig had a recommended healthcheck. This was mostly
noise as its predominant use was to check if a server was installed.
This check was not accurate as vim.fn.executable is extremely primitive
and does not consider cmd_env (forwarded to uv_spawn) or language servers
that are run via an interpreter.
Furthermore, checking if a language server is executable will no longer
be a useful signal once TCP support (which allows for connecting to
already running or remote servers).
Remove for now.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index d760b1bb..0fe9c1f6 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -66,12 +66,6 @@ body: description: "You can download a minimal_init.lua via `curl -fLO https://raw.githubusercontent.com/neovim/nvim-lspconfig/master/test/minimal_init.lua`. Then edit it to include your language server and add necessary configuration and paste it here." validations: required: true - - type: textarea - attributes: - label: "Health check" - description: "Run `:checkhealth lspconfig` and paste the results here." - validations: - required: true - type: input attributes: label: "LSP log" |
