Update comment

This commit is contained in:
Sheldon Lee 2023-04-06 02:22:23 +01:00
parent 07448abd59
commit 4cc7fbe714

View File

@ -6,7 +6,9 @@ vim.diagnostic.config({
lsp.on_attach(function(client, bufnr) lsp.on_attach(function(client, bufnr)
lsp.default_keymaps({buffer = 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 = "" vim.opt.tagfunc = ""
end) end)