mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-03-10 09:27:25 +00:00
Merge branch 'main' into toggles
This commit is contained in:
@@ -14,10 +14,10 @@ function M.get()
|
|||||||
-- stylua: ignore
|
-- stylua: ignore
|
||||||
M._keys = {
|
M._keys = {
|
||||||
{ "<leader>cl", "<cmd>LspInfo<cr>", desc = "Lsp Info" },
|
{ "<leader>cl", "<cmd>LspInfo<cr>", desc = "Lsp Info" },
|
||||||
{ "gd", vim.lsp.buf.definition(), desc = "Goto Definition", has = "definition" },
|
{ "gd", vim.lsp.buf.definition, desc = "Goto Definition", has = "definition" },
|
||||||
{ "gr", vim.lsp.buf.references(), desc = "References", nowait = true },
|
{ "gr", vim.lsp.buf.references, desc = "References", nowait = true },
|
||||||
{ "gI", vim.lsp.buf.implementation(), desc = "Goto Implementation" },
|
{ "gI", vim.lsp.buf.implementation, desc = "Goto Implementation" },
|
||||||
{ "gy", vim.lsp.buf.type_definition(), desc = "Goto T[y]pe Definition" },
|
{ "gy", vim.lsp.buf.type_definition, desc = "Goto T[y]pe Definition" },
|
||||||
{ "gD", vim.lsp.buf.declaration, desc = "Goto Declaration" },
|
{ "gD", vim.lsp.buf.declaration, desc = "Goto Declaration" },
|
||||||
{ "K", vim.lsp.buf.hover, desc = "Hover" },
|
{ "K", vim.lsp.buf.hover, desc = "Hover" },
|
||||||
{ "gK", vim.lsp.buf.signature_help, desc = "Signature Help", has = "signatureHelp" },
|
{ "gK", vim.lsp.buf.signature_help, desc = "Signature Help", has = "signatureHelp" },
|
||||||
|
|||||||
Reference in New Issue
Block a user