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
1 week 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
vim.tbl_keys(hls),
420
extend({
421
prompt = "highlights",
422
-
on_close = function(line, _)
423
vim.schedule(function()
424
-
vim.print(line)
425
end)
426
end,
427
format_item = function(hlname)
···
419
vim.tbl_keys(hls),
420
extend({
421
prompt = "highlights",
422
+
on_close = function(hlname, _)
423
vim.schedule(function()
424
+
vim.cmd(("verbose hi %s"):format(hlname))
425
end)
426
end,
427
format_item = function(hlname)