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(builtins): highlights `on_close` action
robinwobin.dev
6 days ago
a4298c92
2e494a72
+2
-2
1 changed file
expand all
collapse all
unified
split
lua
artio
builtins.lua
+2
-2
lua/artio/builtins.lua
···
419
419
vim.tbl_keys(hls),
420
420
extend({
421
421
prompt = "highlights",
422
422
-
on_close = function(line, _)
422
422
+
on_close = function(hlname, _)
423
423
vim.schedule(function()
424
424
-
vim.print(line)
424
424
+
vim.cmd(("verbose hi %s"):format(hlname))
425
425
end)
426
426
end,
427
427
format_item = function(hlname)