Skip to content

Commit 6906b89

Browse files
committed
fix: fileformat autocmd bug
Fixes #1123
1 parent f10fdda commit 6906b89

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

lua/gitsigns/attach.lua

+3-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,9 @@ local setup = util.once(function()
124124
return
125125
end
126126
bcache:invalidate(true)
127-
manager.update(buf)
127+
async.run(function()
128+
manager.update(buf)
129+
end)
128130
end,
129131
})
130132

lua/gitsigns/manager.lua

+1
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,7 @@ function M.schedule(bufnr, check_compare_text)
454454
return true
455455
end
456456

457+
--- @async
457458
--- Ensure updates cannot be interleaved.
458459
--- Since updates are asynchronous we need to make sure an update isn't performed
459460
--- whilst another one is in progress. If this happens then schedule another

0 commit comments

Comments
 (0)