Change bindings in lspsaga to match the default neovim bindings that came with 0.10 for going to prev and next diagnostic

This commit is contained in:
Martin Larsson 2024-05-20 23:17:20 +02:00
parent 83e5251d37
commit 2b1403b59c

View file

@ -32,12 +32,12 @@ return {
require("utils").add_keymaps({
n = {
["<F2>"] = {
cmd = ":Lspsaga diagnostic_jump_next<CR>"
},
["<F3>"] = {
["]d"] = {
cmd = ":Lspsaga diagnostic_jump_prev<CR>"
},
["[d"] = {
cmd = ":Lspsaga diagnostic_jump_next<CR>"
},
["K"] = {
cmd = ":Lspsaga hover_doc<CR>"
},