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