minimal extui fuzzy finder for neovim

fix(builtins): highlights `on_close` action

+2 -2
+2 -2
lua/artio/builtins.lua
··· 419 419 vim.tbl_keys(hls), 420 420 extend({ 421 421 prompt = "highlights", 422 - on_close = function(line, _) 422 + on_close = function(hlname, _) 423 423 vim.schedule(function() 424 - vim.print(line) 424 + vim.cmd(("verbose hi %s"):format(hlname)) 425 425 end) 426 426 end, 427 427 format_item = function(hlname)