Skip to content

Instantly share code, notes, and snippets.

View hrsh7th's full-sized avatar
🌴
Super busy now. Thank you for sponsors!

hrsh7th hrsh7th

🌴
Super busy now. Thank you for sponsors!
View GitHub Profile
@hrsh7th
hrsh7th / task.lua
Last active June 23, 2025 13:42
vim.task proposal
---@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>