minimal extui fuzzy finder for neovim

fix(picker): trigger `View:showmatches()` on scroll

+2
+2
lua/artio/picker.lua
··· 40 40 local default_actions = { 41 41 down = function(self, _) 42 42 self.idx = self.idx + 1 43 + self.view:showmatches() -- adjust for scrolling 43 44 self.view:hlselect() 44 45 end, 45 46 up = function(self, _) 46 47 self.idx = self.idx - 1 48 + self.view:showmatches() -- adjust for scrolling 47 49 self.view:hlselect() 48 50 end, 49 51 accept = function(_, co)