diff --git a/.config/nvim/after/plugin/lsp.lua b/.config/nvim/after/plugin/lsp.lua index 0e1eb46..16110c0 100644 --- a/.config/nvim/after/plugin/lsp.lua +++ b/.config/nvim/after/plugin/lsp.lua @@ -6,7 +6,9 @@ vim.diagnostic.config({ lsp.on_attach(function(client, bufnr) lsp.default_keymaps({buffer = bufnr}) - -- set tagfunc to empty to use default tag jumpingn behaviour withouth going through the lsp + -- Set tagfunc back to empty instead of vim.lsp.tagfunc(), + -- to use default tag jumping behaviour withouth going through the lsp. + -- - see https://neovim.io/doc/user/lsp.html vim.opt.tagfunc = "" end)