diff --git a/lua/lazyvim/plugins/lsp/keymaps.lua b/lua/lazyvim/plugins/lsp/keymaps.lua index 30d43473..c26058dc 100644 --- a/lua/lazyvim/plugins/lsp/keymaps.lua +++ b/lua/lazyvim/plugins/lsp/keymaps.lua @@ -23,8 +23,8 @@ function M.get() { "[d", M.diagnostic_goto(false), desc = "Prev Diagnostic" }, { "]e", M.diagnostic_goto(true, "ERROR"), desc = "Next Error" }, { "[e", M.diagnostic_goto(false, "ERROR"), desc = "Prev Error" }, - { "]w", M.diagnostic_goto(true, "WARNING"), desc = "Next Warning" }, - { "[w", M.diagnostic_goto(false, "WARNING"), desc = "Prev Warning" }, + { "]w", M.diagnostic_goto(true, "WARN"), desc = "Next Warning" }, + { "[w", M.diagnostic_goto(false, "WARN"), desc = "Prev Warning" }, { "ca", vim.lsp.buf.code_action, desc = "Code Action", mode = { "n", "v" }, has = "codeAction" }, { "cf", format, desc = "Format Document", has = "documentFormatting" }, { "cf", format, desc = "Format Range", mode = "v", has = "documentRangeFormatting" },