summaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml
blob: 6597ec2add8095fa396ae72bb6068a6e7e666730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
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