From 123894205fe34f062842aed73f1ee9ac3366f2c2 Mon Sep 17 00:00:00 2001 From: Michael Lingelbach Date: Fri, 1 Jan 2021 17:16:11 -0800 Subject: [PATCH] Issue template: add minimal init.lua to repo and clean up issue template --- .github/ISSUE_TEMPLATE/bug_report.md | 26 +++++++--- test/minimal_init.lua | 72 ++++++++++++++++++++++++++++ 2 files changed, 91 insertions(+), 7 deletions(-) create mode 100644 test/minimal_init.lua diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 3f40d28621..6001acd56b 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -10,14 +10,11 @@ labels: bug - `nvim --version`: - nvim-lsp version(commit hash): -- `:checkhealth` result -- What language server(If the problem is related to a specific language server): +- What language server (If the problem is related to a specific language server): - Can you reproduce this behavior on other language server clients (vscode, languageclient-neovim, coc.nvim, etc.): -- Can you reproduce this behavior on other language servers offer by the nvim-lspconfig repo? (pyls -> pyright): -- Is this problem isolated to this particular language server: +- Can you reproduce this behavior on other language servers offered in the nvim-lspconfig repo? (pyls -> pyright): +- Is the problem isolated to a particular language server: - Operating system/version: -- Terminal name/version: -- `$TERM`: ### How to reproduce the problem from neovim startup @@ -25,5 +22,20 @@ labels: bug ### Expected behaviour +### Minimal init.vim or init.lua and code sample + + +### Health check +
+Checkhealth result + +
### LSP log - + +
+Log file + +
diff --git a/test/minimal_init.lua b/test/minimal_init.lua new file mode 100644 index 0000000000..4284f2e519 --- /dev/null +++ b/test/minimal_init.lua @@ -0,0 +1,72 @@ +local execute = vim.api.nvim_command +local fn = vim.fn + +local install_path = "/tmp/site/pack/packer/opt/packer.nvim" + +if fn.empty(fn.glob(install_path)) > 0 then + execute("!git clone https://github.com/wbthomason/packer.nvim " .. install_path) +end + +execute "packadd packer.nvim" + +vim.cmd [[packadd packer.nvim]] +vim.cmd [[autocmd BufWritePost minimal_init.lua PackerCompile]] +vim.cmd [[autocmd BufWritePost minimal_init.lua PackerInstall]] + +local use = require('packer').use +require("packer").startup( + { + function() + use "neovim/nvim-lspconfig" + end, + config = {package_root = "/tmp/site/pack"} + } +) + +-- LSP settings +-- log file location: $HOME/.local/share/nvim/lsp.log +vim.lsp.set_log_level("debug") +local nvim_lsp = require('lspconfig') +local on_attach = function(_, bufnr) + local function buf_set_keymap(...) vim.api.nvim_buf_set_keymap(bufnr, ...) end + local function buf_set_option(...) vim.api.nvim_buf_set_option(bufnr, ...) end + + buf_set_option('omnifunc', 'v:lua.vim.lsp.omnifunc') + + -- Mappings. + local opts = { noremap=true, silent=true } + buf_set_keymap('n', 'gD', 'lua vim.lsp.buf.declaration()', opts) + buf_set_keymap('n', 'gd', 'lua vim.lsp.buf.definition()', opts) + buf_set_keymap('n', 'K', 'lua vim.lsp.buf.hover()', opts) + buf_set_keymap('n', 'gi', 'lua vim.lsp.buf.implementation()', opts) + buf_set_keymap('n', '', 'lua vim.lsp.buf.signature_help()', opts) + buf_set_keymap('n', 'wa', 'lua vim.lsp.buf.add_workspace_folder()', opts) + buf_set_keymap('n', 'wr', 'lua vim.lsp.buf.remove_workspace_folder()', opts) + buf_set_keymap('n', 'wl', 'lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))', opts) + buf_set_keymap('n', 'D', 'lua vim.lsp.buf.type_definition()', opts) + buf_set_keymap('n', 'rn', 'lua vim.lsp.buf.rename()', opts) + buf_set_keymap('n', 'gr', 'lua vim.lsp.buf.references()', opts) + buf_set_keymap('n', 'e', 'lua vim.lsp.diagnostic.show_line_diagnostics()', opts) + buf_set_keymap('n', '[d', 'lua vim.lsp.diagnostic.goto_prev()', opts) + buf_set_keymap('n', ']d', 'lua vim.lsp.diagnostic.goto_next()', opts) + buf_set_keymap('n', 'q', 'lua vim.lsp.diagnostic.set_loclist()', opts) +end + +-- Add the server that troubles you here +local name = "pyright" +local cmd = { "pyright-langserver", "--stdio"} -- needed for elixirls, omnisharp, sumneko_lua +if not name then + print("You have not defined a server name, please edit minimal_init.lua") +end +if not nvim_lsp[name].document_config.default_config.cmd and (not cmd) then + print([[You have not defined a server default cmd for a server + that requires it please edit minimal_init.lua]]) +end + +nvim_lsp[name].setup { + cmd = cmd, + on_attach = on_attach, + } + +print([[You can find your log at $HOME/.local/share/nvim/lsp.log. Please paste in a + github issue under a details tag as described in the issue template.]])