diff options
| -rw-r--r-- | .github/ISSUE_TEMPLATE/server_installation_form.yaml | 6 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/server_issue.yaml | 18 |
2 files changed, 19 insertions, 5 deletions
diff --git a/.github/ISSUE_TEMPLATE/server_installation_form.yaml b/.github/ISSUE_TEMPLATE/server_installation_form.yaml index 94ca74bc..a050752b 100644 --- a/.github/ISSUE_TEMPLATE/server_installation_form.yaml +++ b/.github/ISSUE_TEMPLATE/server_installation_form.yaml @@ -68,14 +68,14 @@ body: label: LspInstallInfo output description: Please provide the installation output available in the `:LspInstallInfo` window, if possible. placeholder: ":LspInstallInfo" - render: shell + render: Text - type: textarea attributes: label: Installation log description: "Make sure you set DEBUG level before installing the server. Refer to `:help nvim-lsp-installer-debugging`" placeholder: ":LspInstallLog" - render: shell + render: Text validations: required: true @@ -83,7 +83,7 @@ body: attributes: label: Healthcheck placeholder: ":checkhealth nvim-lsp-installer" - render: shell + render: Text validations: required: true diff --git a/.github/ISSUE_TEMPLATE/server_issue.yaml b/.github/ISSUE_TEMPLATE/server_issue.yaml index d9e4f0af..003db054 100644 --- a/.github/ISSUE_TEMPLATE/server_issue.yaml +++ b/.github/ISSUE_TEMPLATE/server_issue.yaml @@ -45,6 +45,12 @@ body: - type: checkboxes attributes: + label: I've manually reviewed the Nvim LPS client log (`:LspLog`) to find potential errors + options: + - label: "Yes" + + - type: checkboxes + attributes: label: I've recently downloaded the latest plugin version of both nvim-lsp-installer and nvim-lspconfig options: - label: "Yes" @@ -84,15 +90,23 @@ body: attributes: label: LspInfo placeholder: ":LspInfo contents" - render: shell + render: Text validations: required: true - type: textarea attributes: + label: LspLog + placeholder: "Are there any relevant logs in :LspLog? (don't paste its contents here)" + render: Text + validations: + required: false + + - type: textarea + attributes: label: Healthcheck placeholder: ":checkhealth nvim-lsp-installer" - render: shell + render: Text validations: required: true |
