general-issue-form.yaml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. name: General Issue
  2. description: File a bug report not related to LSP (intellisense, completion, diagnostics, etc)
  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) (both open and closed) and check the [Troubleshooting guide](https://www.lunarvim.org/docs/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. description: "output of `:LvimVersion` (hold shift when selecting and copy using the terminal's copy binding)"
  28. placeholder: |
  29. branch-commit
  30. validations:
  31. required: true
  32. - type: input
  33. id: nvim-version
  34. attributes:
  35. label: Neovim version (>= 0.8.0)
  36. description: "Output of `nvim --version`"
  37. placeholder: |
  38. NVIM v0.8.0-dev+199-g2875d45e7
  39. validations:
  40. required: true
  41. - type: input
  42. id: system-version
  43. attributes:
  44. label: "Operating system/version"
  45. placeholder: "macOS 11.5"
  46. validations:
  47. required: true
  48. - type: textarea
  49. id: steps
  50. attributes:
  51. label: "Steps to reproduce"
  52. description: "Steps to reproduce using the minimal config."
  53. placeholder: |
  54. 1. `nvim -u ~/.local/share/lunarvim/lvim/tests/minimal_lsp.lua`
  55. 2. ...
  56. - type: textarea
  57. id: screenshots
  58. attributes:
  59. label: Screenshots
  60. description: If applicable, add screenshots to help explain your problem