This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---@enum vim.task.TaskStatus | |
local TaskStatus = { | |
pending = 'pending', | |
success = 'success', | |
failure = 'failure', | |
aborted = 'aborted', | |
} | |
---Internal registry for tracking asynchronous tasks. | |
---@type table<thread, vim.task.Task> |
OlderNewer