Skip to content

Commit

Permalink
fix(neovim): fix tag jump rebind
Browse files Browse the repository at this point in the history
  • Loading branch information
astutecat committed May 8, 2023
1 parent 1aa59c3 commit e0597e7
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions private_dot_config/nvim/lua/lazy-plugins/opts/lsp-shared.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,10 @@ local on_attach_keymap = function(bufnr)
local k_opts = { silent = true, noremap = true, buffer = bufnr }

return {
{
'<C-]>',
'<cmd>lua vim.lsp.buf.definition()<CR>',
description = 'LSP: Go to Definition',
opts =
k_opts
},
{
'<M-C-]>',
'<cmd>lua vim.lsp.buf.definition()<CR>',
description = 'Tag Jump',
description = 'LSP: Go to definition',
opts =
k_opts
},
Expand Down

0 comments on commit e0597e7

Please sign in to comment.