Merge 'upstream' fix: highlight group clear on each attach, README

This commit is contained in:
Damjan 9000 2024-04-22 23:48:46 +02:00
commit 77dbcfaaf7
2 changed files with 2 additions and 2 deletions

View file

@ -105,7 +105,7 @@ return {
-- 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,