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:
parent
83e5251d37
commit
2b1403b59c
1 changed files with 4 additions and 4 deletions
|
|
@ -32,12 +32,12 @@ return {
|
||||||
|
|
||||||
require("utils").add_keymaps({
|
require("utils").add_keymaps({
|
||||||
n = {
|
n = {
|
||||||
["<F2>"] = {
|
["]d"] = {
|
||||||
cmd = ":Lspsaga diagnostic_jump_next<CR>"
|
|
||||||
},
|
|
||||||
["<F3>"] = {
|
|
||||||
cmd = ":Lspsaga diagnostic_jump_prev<CR>"
|
cmd = ":Lspsaga diagnostic_jump_prev<CR>"
|
||||||
},
|
},
|
||||||
|
["[d"] = {
|
||||||
|
cmd = ":Lspsaga diagnostic_jump_next<CR>"
|
||||||
|
},
|
||||||
["K"] = {
|
["K"] = {
|
||||||
cmd = ":Lspsaga hover_doc<CR>"
|
cmd = ":Lspsaga hover_doc<CR>"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue