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