aboutsummaryrefslogtreecommitdiff
path: root/test/functional/fixtures/start/nvim-leftpad/lua/async_leftpad.lua
blob: ffbd8a4f8371ea5a0a0472936bb8a6c1175de43f (plain) (blame)
1
2
3
4
5
return function (val, res)
  local handle
  handle = vim.uv.new_async(function() _G[res] = require'leftpad'(val) handle:close() end)
  handle:send()
end