remove weird
This commit is contained in:
parent
63e15270ac
commit
8ee4839ad8
1 changed files with 6 additions and 2 deletions
|
|
@ -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" },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue