chore: consistent border style when navigating diagnostics (#2033)
This commit is contained in:
parent
699aeaa442
commit
a54e4e9272
|
@ -193,14 +193,14 @@ M.lspconfig = {
|
|||
|
||||
["[d"] = {
|
||||
function()
|
||||
vim.diagnostic.goto_prev()
|
||||
vim.diagnostic.goto_prev({ float = { border = "rounded" }})
|
||||
end,
|
||||
"Goto prev",
|
||||
},
|
||||
|
||||
["]d"] = {
|
||||
function()
|
||||
vim.diagnostic.goto_next()
|
||||
vim.diagnostic.goto_next({ float = { border = "rounded" }})
|
||||
end,
|
||||
"Goto next",
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue