🐻 minimal ui2 fuzzy finder for Neovim codeberg.org/comfysage/artio.nvim
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

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)