lsp_bug_report.yml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. name: Language server (LSP) client bug
  2. description: Report an issue with Neovim LSP
  3. labels: [bug, lsp]
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. _Before reporting:_ search [existing issues](https://github.com/neovim/neovim/issues?q=is%3Aissue+is%3Aopen+label%3Abug) and check the [FAQ](https://github.com/neovim/neovim/wiki/FAQ). Usage questions such as "How do I...?" or "Why isn't X language server/feature working?" belong on the [Neovim Discourse](https://neovim.discourse.group/c/7-category/7) and will be closed.
  9. - type: input
  10. attributes:
  11. label: "Neovim version (nvim -v)"
  12. placeholder: "0.6.0 commit db1b0ee3b30f"
  13. validations:
  14. required: true
  15. - type: input
  16. attributes:
  17. label: "Language server name/version"
  18. placeholder: "rls 0.5.2"
  19. validations:
  20. required: true
  21. - type: input
  22. attributes:
  23. label: "Operating system/version"
  24. placeholder: "emacs 23"
  25. validations:
  26. required: true
  27. - type: textarea
  28. attributes:
  29. label: ':checkhealth'
  30. description: |
  31. Paste the results from `nvim -c ":checkhealth nvim lspconfig"`
  32. render: markdown
  33. - type: textarea
  34. attributes:
  35. label: 'Steps to reproduce using "nvim -u minimal_init.lua"'
  36. description: |
  37. - Download the minimal config with `curl -LO https://raw.githubusercontent.com/neovim/nvim-lspconfig/master/test/minimal_init.lua` and modify it to include any specific commands or servers pertaining to your issues.
  38. - _Note_: if the issue is with an autocompletion or other LSP plugin, report to that plugin's issue tracker.
  39. validations:
  40. required: true
  41. - type: textarea
  42. attributes:
  43. label: "Expected behavior"
  44. description: "Describe the behavior you expect. May include logs, images, or videos."
  45. - type: textarea
  46. attributes:
  47. label: "Actual behavior"
  48. - type: input
  49. attributes:
  50. label: "Log file"
  51. placeholder: "https://gist.github.com/prakhar1989/1b0a2c9849b2e1e912fb"
  52. description: |
  53. - Upload `lsp.log` before and after the problem in a [secret gist](https://gist.github.com/). Paste the URL to the gist.
  54. - You can set the log level by adding `vim.lsp.set_log_level("debug")` after setting up LSP in your config.
  55. - You can find the location of the log with `:lua print(vim.lsp.get_log_path())`