diff options
| author | Christian Chiarulli <chris.machine@pm.me> | 2022-05-23 14:08:05 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-23 14:08:05 -0400 |
| commit | 24e1856862e859b60cd5b38fa6befa00f75de89a (patch) | |
| tree | e59f33031aa49087be668a09b8e7230721911cee /lua/user/whichkey.lua | |
| parent | 83357089dd90eda107f6eac21dd327dd1f483370 (diff) | |
| parent | 219abb0e6866a6f33f5332cc00ff22bcef1a9a63 (diff) | |
Merge pull request #152 from rohanghige/22-autocommands
[FIX] Tree-sitter ensure_installed error message
Diffstat (limited to 'lua/user/whichkey.lua')
| -rw-r--r-- | lua/user/whichkey.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/user/whichkey.lua b/lua/user/whichkey.lua index 994435f..f5520b1 100644 --- a/lua/user/whichkey.lua +++ b/lua/user/whichkey.lua @@ -143,7 +143,7 @@ local mappings = { i = { "<cmd>LspInfo<cr>", "Info" }, I = { "<cmd>LspInstallInfo<cr>", "Installer Info" }, j = { - "<cmd>lua vim.lsp.diagnostic.goto_next()<CR>", + "<cmd>lua vim.diagnostic.goto_next()<CR>", "Next Diagnostic", }, k = { @@ -151,7 +151,7 @@ local mappings = { "Prev Diagnostic", }, l = { "<cmd>lua vim.lsp.codelens.run()<cr>", "CodeLens Action" }, - q = { "<cmd>lua vim.lsp.diagnostic.set_loclist()<cr>", "Quickfix" }, + q = { "<cmd>lua vim.diagnostic.setloclist()<cr>", "Quickfix" }, r = { "<cmd>lua vim.lsp.buf.rename()<cr>", "Rename" }, s = { "<cmd>Telescope lsp_document_symbols<cr>", "Document Symbols" }, S = { |
