blob: 8a160c82618c33764afcbcc70e9dc8a591fa5cf4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
local M = {}
function M.run(func)
coroutine.resume(coroutine.create(function()
local status, err = pcall(func)
if not status then
vim.notify(('[lspconfig] unhandled error: %s'):format(tostring(err)), vim.log.levels.WARN)
end
end))
end
function M.reenter()
if vim.in_fast_event() then
local co = assert(coroutine.running())
vim.schedule(function()
coroutine.resume(co)
end)
coroutine.yield()
end
end
return M
|