mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
nvim: remove "gtd" binding
This commit is contained in:
parent
0299c9e14d
commit
8886ac439e
1 changed files with 2 additions and 1 deletions
|
|
@ -85,7 +85,8 @@ local on_attach = function(client, bufno)
|
||||||
map("n", "<C-k>", vim.lsp.buf.signature_help, opts)
|
map("n", "<C-k>", vim.lsp.buf.signature_help, opts)
|
||||||
map("n", "gD", vim.lsp.buf.declaration, opts)
|
map("n", "gD", vim.lsp.buf.declaration, opts)
|
||||||
map("n", "gd", vim.lsp.buf.definition, opts)
|
map("n", "gd", vim.lsp.buf.definition, opts)
|
||||||
map("n", "gtd", vim.lsp.buf.type_definition, opts)
|
-- conflicts with tabs
|
||||||
|
-- map("n", "gtd", vim.lsp.buf.type_definition, opts)
|
||||||
map("n", "gi", vim.lsp.buf.implementation, opts)
|
map("n", "gi", vim.lsp.buf.implementation, opts)
|
||||||
map("n", "gu", ts.lsp_references, opts)
|
map("n", "gu", ts.lsp_references, opts)
|
||||||
map("n", "<leader>ca", vim.lsp.buf.code_action, opts)
|
map("n", "<leader>ca", vim.lsp.buf.code_action, opts)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue