diff options
| author | William Boman <william@redwill.se> | 2022-01-14 00:29:41 +0100 |
|---|---|---|
| committer | William Boman <william@redwill.se> | 2022-01-14 00:51:34 +0100 |
| commit | eb6eff081fad0e535dc39bb2f16011b5a7dffafb (patch) | |
| tree | 03d9cd7ed0191fca3d77e2df58d5067377e048de /.github | |
| parent | fix(issue-template): fix yaml syntax (diff) | |
| download | mason-eb6eff081fad0e535dc39bb2f16011b5a7dffafb.tar mason-eb6eff081fad0e535dc39bb2f16011b5a7dffafb.tar.gz mason-eb6eff081fad0e535dc39bb2f16011b5a7dffafb.tar.bz2 mason-eb6eff081fad0e535dc39bb2f16011b5a7dffafb.tar.lz mason-eb6eff081fad0e535dc39bb2f16011b5a7dffafb.tar.xz mason-eb6eff081fad0e535dc39bb2f16011b5a7dffafb.tar.zst mason-eb6eff081fad0e535dc39bb2f16011b5a7dffafb.zip | |
more fixes in issue templates
Diffstat (limited to '.github')
| -rw-r--r-- | .github/ISSUE_TEMPLATE/general_issue.yaml | 10 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/new_server_request.yaml | 4 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/server_installation_form.yaml | 33 |
3 files changed, 18 insertions, 29 deletions
diff --git a/.github/ISSUE_TEMPLATE/general_issue.yaml b/.github/ISSUE_TEMPLATE/general_issue.yaml index 1c56937f..31996c4d 100644 --- a/.github/ISSUE_TEMPLATE/general_issue.yaml +++ b/.github/ISSUE_TEMPLATE/general_issue.yaml @@ -18,8 +18,8 @@ body: - type: input attributes: - label: Neovim version (>= 0.6) - description: Output of `nvim --version` + label: "Neovim version (>= 0.6)" + description: "Output of `nvim --version`" placeholder: | NVIM v0.6.0-dev+209-g0603eba6e Build type: Release @@ -29,7 +29,7 @@ body: - type: input attributes: - label: "Operating system/version (`$ uname -a` on Linux)" + label: "Operating system/version (`uname -a` on Linux)" validations: required: true @@ -37,7 +37,7 @@ body: attributes: label: I've recently downloaded the latest plugin version of both nvim-lsp-installer and nvim-lspconfig options: - - label: Yes + - label: "Yes" - type: input attributes: @@ -63,7 +63,7 @@ body: - type: textarea attributes: label: Healthcheck output - placeholder: :checkhealth nvim-lsp-installer + placeholder: ":checkhealth nvim-lsp-installer" render: shell validations: required: true diff --git a/.github/ISSUE_TEMPLATE/new_server_request.yaml b/.github/ISSUE_TEMPLATE/new_server_request.yaml index 9b6a05ac..60532d20 100644 --- a/.github/ISSUE_TEMPLATE/new_server_request.yaml +++ b/.github/ISSUE_TEMPLATE/new_server_request.yaml @@ -1,5 +1,5 @@ -name: Server installation issue -description: Report an issue with installing a server via nvim-lsp-installer +name: New server request +description: Request a new server not currently available title: "[New server]: " labels: - new-server-request diff --git a/.github/ISSUE_TEMPLATE/server_installation_form.yaml b/.github/ISSUE_TEMPLATE/server_installation_form.yaml index fd5927f0..ee9863ed 100644 --- a/.github/ISSUE_TEMPLATE/server_installation_form.yaml +++ b/.github/ISSUE_TEMPLATE/server_installation_form.yaml @@ -20,8 +20,8 @@ body: - type: input attributes: - label: Neovim version (>= 0.6) - description: Output of `nvim --version` + label: "Neovim version (>= 0.6)" + description: "Output of `nvim --version`" placeholder: | NVIM v0.6.0-dev+209-g0603eba6e Build type: Release @@ -31,7 +31,7 @@ body: - type: input attributes: - label: "Operating system/version (`$ uname -a` on Linux)" + label: "Operating system/version (`uname -a` on Linux)" validations: required: true @@ -39,7 +39,7 @@ body: attributes: label: I've recently downloaded the latest plugin version of both nvim-lsp-installer and nvim-lspconfig options: - - label: Yes + - label: "Yes" - type: input attributes: @@ -64,34 +64,23 @@ body: - type: textarea attributes: - label: Log and support info - placeholder: :LspInstallInfo + label: LspInstallInfo output + placeholder: ":LspInstallInfo" render: shell - type: textarea attributes: - label: Log and support info - description: Make sure you set DEBUG level before installing the server. Refer to `:help nvim-lsp-installer-debugging`. - placeholder: :LspInstallLog + 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 validations: required: true - type: textarea attributes: - label: Log and support info - placeholder: :checkhealth nvim-lsp-installer - render: shell - validations: - required: true - - - type: textarea - attributes: - label: Log and support info - placeholder: | - :LspInstallInfo - :LspInstallLog - :checkhealth nvim-lsp-installer + label: Healthcheck + placeholder: ":checkhealth nvim-lsp-installer" render: shell validations: required: true |
