mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-24 17:58:51 +02:00
fix(lsp): correct previous reference keymap description (#3314)
This commit is contained in:
parent
945ee7e283
commit
cdff9de172
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ function M.get()
|
||||||
has = "codeAction",
|
has = "codeAction",
|
||||||
},
|
},
|
||||||
{ "]]", function() LazyVim.lsp.words.jump(vim.v.count1) end, has = "documentHighlight", desc = "Next Reference" },
|
{ "]]", function() LazyVim.lsp.words.jump(vim.v.count1) end, has = "documentHighlight", desc = "Next Reference" },
|
||||||
{ "[[", function() LazyVim.lsp.words.jump(-vim.v.count1) end, has = "documentHighlight", desc = "Next Reference" },
|
{ "[[", function() LazyVim.lsp.words.jump(-vim.v.count1) end, has = "documentHighlight", desc = "Prev Reference" },
|
||||||
}
|
}
|
||||||
if LazyVim.has("inc-rename.nvim") then
|
if LazyVim.has("inc-rename.nvim") then
|
||||||
M._keys[#M._keys + 1] = {
|
M._keys[#M._keys + 1] = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue