mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00
refactor: use nvim.foo.bar format for autocommand groups
This commit is contained in:
@@ -356,7 +356,7 @@ local bufnr_and_namespace_cacher_mt = {
|
||||
-- bufnr -> ns -> Diagnostic[]
|
||||
local diagnostic_cache = {} --- @type table<integer,table<integer,vim.Diagnostic[]>>
|
||||
do
|
||||
local group = api.nvim_create_augroup('DiagnosticBufWipeout', {})
|
||||
local group = api.nvim_create_augroup('nvim.diagnostic.buf_wipeout', {})
|
||||
setmetatable(diagnostic_cache, {
|
||||
--- @param t table<integer,vim.Diagnostic[]>
|
||||
--- @param bufnr integer
|
||||
|
Reference in New Issue
Block a user