diff options
author | christianchiarulli <[email protected]> | 2021-07-05 16:26:31 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-05 16:26:31 -0400 |
commit | 20485971641a9d916640ccad05586a641c984ed6 (patch) | |
tree | d397a3a9adba502b4c26b802d897b8310972f76f /.github/ISSUE_TEMPLATE | |
parent | 56e82dac4497293541099185441485dd31e98dc8 (diff) | |
parent | a469c710bfc01f291df68dba40464caaa2b496da (diff) |
Merge branch 'master' of github.com:ChristianChiarulli/LunarVim into stable
Diffstat (limited to '.github/ISSUE_TEMPLATE')
-rw-r--r-- | .github/ISSUE_TEMPLATE/config.yml | 9 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/general-issue-form.yaml | 9 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/lsp-issue-form.yaml | 80 |
3 files changed, 95 insertions, 3 deletions
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..12d6ceab --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,9 @@ +blank_issues_enabled: true + +contact_links: + - name: Matrix community + url: https://matrix.to/#/+atmachine:matrix + about: Please ask and answer questions on Matrix. + - name: Discord community + url: https://discord.gg/Xb9B4Ny + about: Please ask and answer questions on Discord. diff --git a/.github/ISSUE_TEMPLATE/general-issue-form.yaml b/.github/ISSUE_TEMPLATE/general-issue-form.yaml index 4571fa12..50a8e210 100644 --- a/.github/ISSUE_TEMPLATE/general-issue-form.yaml +++ b/.github/ISSUE_TEMPLATE/general-issue-form.yaml @@ -52,9 +52,12 @@ body: - type: checkboxes id: checks attributes: - label: I have read + label: I have options: - - label: The readme + - label: Read the readme required: true - - label: The wiki + - label: Read the wiki required: true + - label: Searched for similar issues + required: true + diff --git a/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml b/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml new file mode 100644 index 00000000..6597ec2a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml @@ -0,0 +1,80 @@ +name: LSP Issue +description: File a LSP related bug report +title: "[Bug]: " +labels: [bug, lsp] +# assignees: +# - ChristianChiarulli +body: + - type: markdown + attributes: + value: | + Thank you for helping us improve ! + - type: textarea + id: problem-description + attributes: + label: Problem description + description: Also tell us, what did you expect to happen? + placeholder: | + Steps to reproduce the behavior: + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: true + - type: checkboxes + id: generic-checks + attributes: + label: Check the following + options: + - label: I am in a git managed directory + required: true + - label: I restarted Neovim after running :LspInstall + required: true + - label: I have a valid language configuration (~/.config/nvim/ftplugin/) + required: true + - label: I checked the options (~/.config/nvim/lv-config.lua) + required: true + - label: The programs specified by the config are installed + - type: input + id: lunar-vim-version + attributes: + label: LunarVim version + validations: + required: true + - type: input + id: nvim-version + attributes: + label: Neovim version (>= 0.5) + placeholder: nvim --version + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + placeholder: | + :echo &ft + :LspInfo + + :LspStart <language> + :messages + :checkhealth + grep ERROR ~/.cache/nvim/lsp.log + render: shell + - type: textarea + id: screenshots + attributes: + label: Screenshots + description: If applicable, add screenshots to help explain your problem + - type: checkboxes + id: documentation-checks + attributes: + label: I have + options: + - label: Read the readme + required: true + - label: Read the wiki + required: true + - label: Searched for similar issues + required: true |