nvim: lsp: document_symbol is now mapped by default to gO
See :help lsp-defaults.
This commit is contained in:
parent
1d1a3539c8
commit
86c1da359e
1 changed files with 1 additions and 2 deletions
|
@ -59,8 +59,7 @@ local lsp_key_mappings = {
|
|||
{ "textDocument/definition" , 'n', 'pd' , '<cmd>lua PeekDefinition()<CR>' },
|
||||
{ "textDocument/definition" , 'n', 'gd' , '<cmd>lua vim.lsp.buf.definition()<CR>' },
|
||||
{ "textDocument/typeDefinition" , 'n', '<C-k>' , '<cmd>lua vim.lsp.buf.type_definition()<CR>' },
|
||||
{ "textDocument/documentSymbol" , 'n', '1gd' , '<cmd>lua vim.lsp.buf.document_symbol()<CR>' },
|
||||
{ "workspace/symbol" , 'n', '1gD' , '<cmd>lua vim.lsp.buf.workspace_symbol()<CR>' },
|
||||
{ "workspace/symbol" , 'n', '1gd' , '<cmd>lua vim.lsp.buf.workspace_symbol()<CR>' },
|
||||
{ "textDocument/inlayHint" , 'n', 'gi' , '<cmd>lua InlayHintToggle()<CR>' },
|
||||
|
||||
{ "textDocument/rangeFormatting", 'x', 'gq', '<cmd>lua vim.lsp.buf.format({async=true})<CR>' },
|
||||
|
|
Loading…
Reference in a new issue