tangled
alpha
login
or
join now
robinwobin.dev
/
artio.nvim
3
fork
atom
minimal extui fuzzy finder for neovim
3
fork
atom
overview
issues
pulls
pipelines
fix: select `on_choice` parameters
robinwobin.dev
4 months ago
369b5612
3b5b0677
+2
-2
1 changed file
expand all
collapse all
unified
split
lua
artio
init.lua
+2
-2
lua/artio/init.lua
···
55
55
end
56
56
return artio.generic(lst, {
57
57
prompt = opts.prompt,
58
58
-
on_close = function(...)
59
59
-
return on_choice(...)
58
58
+
on_close = function(_, idx)
59
59
+
return on_choice(items[idx], idx)
60
60
end,
61
61
})
62
62
end