remove weird

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-10-06 14:10:53 -05:00
parent 63e15270ac
commit 8ee4839ad8

View file

@ -89,12 +89,16 @@ U.keymaps({
{ "J", "mzJ`z", desc = "Move line below onto this line" }, { "J", "mzJ`z", desc = "Move line below onto this line" },
{ {
"]d", "]d",
vim.diagnostic.goto_next, function()
vim.diagnostic.jump({ count = 1, float = true })
end,
desc = "Go to next diagnostic message", desc = "Go to next diagnostic message",
}, },
{ {
"[d", "[d",
vim.diagnostic.goto_prev, function()
vim.diagnostic.jump({ count = -1, float = true })
end,
desc = "Go to previous diagnostic message", desc = "Go to previous diagnostic message",
}, },
{ ">", "> gv", desc = "Indent selection", mode = "v" }, { ">", "> gv", desc = "Indent selection", mode = "v" },