This commit is contained in:
2026-03-11 13:34:29 +00:00
parent 671036416b
commit e12d425df5
4 changed files with 16 additions and 3 deletions

View File

@@ -321,13 +321,13 @@
{
mode = "n";
key = "<leader>lj";
action = ":lua vim.diagnostic.goto_next()<CR>";
action = ":lua vim.diagnostic.jump({ count = 1 })<CR>";
options.desc = "Next diagnostic";
}
{
mode = "n";
key = "<leader>lk";
action = ":lua vim.diagnostic.goto_prev()<CR>";
action = ":lua vim.diagnostic.jump({ count = -1 })<CR>";
options.desc = "Prev diagnostic";
}
{