mirror of
https://github.com/neovim/neovim.git
synced 2026-03-17 22:28:14 +00:00
6 lines
153 B
Lua
6 lines
153 B
Lua
return function (val, res)
|
|
local handle
|
|
handle = vim.uv.new_async(function() _G[res] = require'leftpad'(val) handle:close() end)
|
|
handle:send()
|
|
end
|