mirror of
https://github.com/neovim/neovim.git
synced 2026-08-23 23:51:51 +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
|