general-issue-form.yaml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. name: General Issue
  2. description: File a bug report
  3. labels: [bug]
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. _Before reporting:_ search [existing issues](https://github.com/lunarvim/lunarvim/issues?q=is%3Aissue+is%3Aopen+label%3Abug) and check the [Troubleshooting guide](https://www.lunarvim.org/troubleshooting).
  9. If you need real-time help, join us on Discord. Thank you for helping us improve!
  10. - type: textarea
  11. id: problem-description
  12. attributes:
  13. label: Problem description
  14. description: Also tell us, what did you expect to happen?
  15. placeholder: |
  16. Steps to reproduce the behavior:
  17. 1. Go to '...'
  18. 2. Click on '....'
  19. 3. Scroll down to '....'
  20. 4. See error
  21. validations:
  22. required: true
  23. - type: input
  24. id: version
  25. attributes:
  26. label: LunarVim version
  27. placeholder: |
  28. output of :LvimVersion
  29. validations:
  30. required: true
  31. - type: input
  32. id: nvim-version
  33. attributes:
  34. label: Neovim version (>= 0.7.2)
  35. description: "Output of `nvim --version`"
  36. placeholder: |
  37. NVIM v0.8.0-dev+199-g2875d45e7
  38. validations:
  39. required: true
  40. - type: input
  41. id: system-version
  42. attributes:
  43. label: "Operating system/version"
  44. placeholder: "macOS 11.5"
  45. validations:
  46. required: true
  47. - type: textarea
  48. id: steps
  49. attributes:
  50. label: "Steps to reproduce"
  51. description: "Steps to reproduce using the minimal config."
  52. placeholder: |
  53. 1. `nvim -u ~/.local/share/lunarvim/lvim/tests/minimal_lsp.lua`
  54. 2. ...
  55. - type: textarea
  56. id: support-info
  57. attributes:
  58. label: support info
  59. description: Information from LspInfo and LvimInfo
  60. placeholder: |
  61. ```console
  62. # :LspInfo
  63. ```
  64. ```console
  65. # :LvimInfo
  66. ```
  67. validations:
  68. required: true
  69. - type: textarea
  70. id: screenshots
  71. attributes:
  72. label: Screenshots
  73. description: If applicable, add screenshots to help explain your problem