mirror of
https://github.com/neovim/neovim.git
synced 2024-12-21 03:35:02 -07: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
|