lsp-issue-form.yaml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. name: LSP Issue
  2. description: File a LSP related bug report
  3. labels: [bug, lsp]
  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: "A short description of the problem you are reporting."
  15. validations:
  16. required: true
  17. - type: input
  18. id: version
  19. attributes:
  20. label: LunarVim version
  21. placeholder: |
  22. output of :LvimVersion
  23. validations:
  24. required: true
  25. - type: input
  26. id: nvim-version
  27. attributes:
  28. label: Neovim version (>= 0.8.0)
  29. description: "Output of `nvim --version`"
  30. placeholder: |
  31. NVIM v0.8.0-dev+199-g2875d45e7
  32. validations:
  33. required: true
  34. - type: input
  35. id: system-version
  36. attributes:
  37. label: "Operating system/version"
  38. placeholder: "macOS 11.5"
  39. validations:
  40. required: true
  41. - type: input
  42. id: servers
  43. attributes:
  44. label: "Affected language servers"
  45. description: "If this issue is specific to one or more language servers, list them here. If not, write 'all'."
  46. placeholder: "tsserver"
  47. validations:
  48. required: true
  49. - type: textarea
  50. id: steps
  51. attributes:
  52. label: "Steps to reproduce"
  53. description: "Steps to reproduce using the minimal config."
  54. placeholder: |
  55. 1. `nvim -u ~/.local/share/lunarvim/lvim/tests/minimal_lsp.lua`
  56. 2. ...
  57. - type: textarea
  58. id: behavior
  59. attributes:
  60. label: "Actual behavior"
  61. description: "Observed behavior."
  62. validations:
  63. required: true
  64. - type: textarea
  65. id: expected-behavior
  66. attributes:
  67. label: "Expected behavior"
  68. description: "A description of the behavior you expected."
  69. - type: textarea
  70. id: support-info
  71. attributes:
  72. label: support info
  73. description: Information from LspInfo and LvimInfo
  74. placeholder: |
  75. ```console
  76. # :LspInfo
  77. ```
  78. ```console
  79. # :LvimInfo
  80. ```
  81. validations:
  82. required: true
  83. - type: textarea
  84. id: lsp-logs
  85. attributes:
  86. label: logs
  87. description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
  88. render: console
  89. - type: textarea
  90. id: screenshots
  91. attributes:
  92. label: Screenshots
  93. description: If applicable, add screenshots to help explain your problem