diff options
author | Mathias Fußenegger <mfussenegger@users.noreply.github.com> | 2023-01-23 11:11:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-23 02:11:53 -0800 |
commit | 45d511574ca18ad196d85c68d4c2ae58027ca273 (patch) | |
tree | 452ff078daa6da8fb79c776b3f7c9d8f18920757 | |
parent | b36b58d0d4869b573ca6657db0d43eed2cbdd72f (diff) | |
download | rneovim-45d511574ca18ad196d85c68d4c2ae58027ca273.tar.gz rneovim-45d511574ca18ad196d85c68d4c2ae58027ca273.tar.bz2 rneovim-45d511574ca18ad196d85c68d4c2ae58027ca273.zip |
project: "steps to reproduce" in lsp_bug_report #21932
-rw-r--r-- | .github/ISSUE_TEMPLATE/lsp_bug_report.yml | 34 |
1 files changed, 32 insertions, 2 deletions
diff --git a/.github/ISSUE_TEMPLATE/lsp_bug_report.yml b/.github/ISSUE_TEMPLATE/lsp_bug_report.yml index 3789fb866b..88867ce644 100644 --- a/.github/ISSUE_TEMPLATE/lsp_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/lsp_bug_report.yml @@ -31,8 +31,38 @@ body: attributes: label: 'Steps to reproduce using "nvim -u minimal_init.lua"' description: | - - Create a minimal_init.lua using vim.lsp.start - read `:h lsp-quickstart` and `:h vim.lsp.start` for more information. - - _Note_: if the issue is with an autocompletion or other LSP plugin, report to that plugin's issue tracker. + - Create a minimal_init.lua using vim.lsp.start: + + ```lua + --- CHANGE THESE + local pattern = 'the-filetype' + local cmd = {'name-of-language-server-executable'} + -- Add files/folders here that indicate the root of a project + local root_markers = {'.git', '.editorconfig'} + -- Change to table with settings if required + local settings = vim.empty_dict() + + vim.api.nvim_create_autocmd('FileType', { + pattern = pattern, + callback = function(args) + local match = vim.fs.find(root_markers, { path = args.file, upward = true })[1] + local root_dir = match and vim.fn.fnamemodify(match, ':p:h') or vim.NIL + vim.lsp.start({ + name = 'bugged-ls', + cmd = cmd, + root_dir = root_dir, + settings = settings + }) + end + }) + ``` + + See `:h lsp-quickstart` and `:h vim.lsp.start` for more information + + - Provide a short code example and describe the folder layout + - Describe how to trigger the issue. E.g. using `:lua vim.lsp.buf.*` commands + + _Note_: if the issue is with an autocompletion or other LSP plugin, report to that plugin's issue tracker. validations: required: true |