fix: highlight group clear on each attach (#874)

pull/875/head
Francis Belanger 3 weeks ago committed by GitHub
parent 81f270a704
commit 942b26184c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -514,7 +514,7 @@ require('lazy').setup({
-- When you move your cursor, the highlights will be cleared (the second autocommand).
local client = vim.lsp.get_client_by_id(event.data.client_id)
if client and client.server_capabilities.documentHighlightProvider then
local highlight_augroup = vim.api.nvim_create_augroup('kickstart-lsp-highlight', { clear = true })
local highlight_augroup = vim.api.nvim_create_augroup('kickstart-lsp-highlight', { clear = false })
vim.api.nvim_create_autocmd({ 'CursorHold', 'CursorHoldI' }, {
buffer = event.buf,
group = highlight_augroup,

Loading…
Cancel
Save