diff options
author | Guido <[email protected]> | 2022-09-28 01:59:18 -0300 |
---|---|---|
committer | GitHub <[email protected]> | 2022-09-28 00:59:18 -0400 |
commit | ae5c20abf1cabfa598a382830214a4904ec275d5 (patch) | |
tree | f5edf47e738fabb2129429061eb2a998c2ed6090 | |
parent | 58b0684f7edc91503bc774af840a9a5021214781 (diff) |
fix: update minimal_lsp.lua (#3090)
-rw-r--r-- | tests/minimal_lsp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/minimal_lsp.lua b/tests/minimal_lsp.lua index 09224f94..01e814be 100644 --- a/tests/minimal_lsp.lua +++ b/tests/minimal_lsp.lua @@ -71,7 +71,7 @@ _G.load_config = function() vim.keymap.set("n", "]d", vim.diagnostic.goto_next, opts) vim.keymap.set("n", "<space>q", vim.diagnostic.setloclist, opts) vim.keymap.set("n", "<space>li", "<cmd>LspInfo<CR>", opts) - vim.keymap.set("n", "<space>lI", "<cmd>MasonCR>", opts) + vim.keymap.set("n", "<space>lI", "<cmd>Mason<CR>", opts) end -- Add the server that troubles you here, e.g. "clangd", "pyright", "tsserver" |