lsp-issue-form.yaml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. name: LSP Issue
  2. description: File a LSP related bug report
  3. title: "[Bug]: "
  4. labels: [bug, lsp]
  5. # assignees:
  6. # - ChristianChiarulli
  7. body:
  8. - type: markdown
  9. attributes:
  10. value: |
  11. Thank you for helping us improve !
  12. - type: textarea
  13. id: problem-description
  14. attributes:
  15. label: Problem description
  16. description: Also tell us, what did you expect to happen?
  17. placeholder: |
  18. Steps to reproduce the behavior:
  19. 1. Go to '...'
  20. 2. Click on '....'
  21. 3. Scroll down to '....'
  22. 4. See error
  23. validations:
  24. required: true
  25. - type: checkboxes
  26. id: generic-checks
  27. attributes:
  28. label: Check the following
  29. options:
  30. - label: I am in a git managed directory
  31. required: true
  32. - label: I restarted Neovim after running :LspInstall
  33. required: true
  34. - label: I have a valid language configuration (~/.config/nvim/ftplugin/)
  35. required: true
  36. - label: I checked the options (~/.config/nvim/lv-config.lua)
  37. required: true
  38. - label: The programs specified by the config are installed
  39. - type: input
  40. id: lunar-vim-version
  41. attributes:
  42. label: LunarVim version
  43. validations:
  44. required: true
  45. - type: input
  46. id: nvim-version
  47. attributes:
  48. label: Neovim version (>= 0.5)
  49. placeholder: nvim --version
  50. validations:
  51. required: true
  52. - type: textarea
  53. id: logs
  54. attributes:
  55. label: Relevant log output
  56. placeholder: |
  57. :echo &ft
  58. :LspInfo
  59. :LspStart <language>
  60. :messages
  61. :checkhealth
  62. grep ERROR ~/.cache/nvim/lsp.log
  63. render: shell
  64. - type: textarea
  65. id: screenshots
  66. attributes:
  67. label: Screenshots
  68. description: If applicable, add screenshots to help explain your problem
  69. - type: checkboxes
  70. id: documentation-checks
  71. attributes:
  72. label: I have
  73. options:
  74. - label: Read the readme
  75. required: true
  76. - label: Read the wiki
  77. required: true
  78. - label: Searched for similar issues
  79. required: true