minimal extui fuzzy finder for neovim

fix(picker): sort matches by score

+3
+3
lua/artio/picker.lua
··· 142 142 143 143 function Picker:getmatches(input) 144 144 self.matches = self.fn(self.items, input) 145 + table.sort(self.matches, function(a, b) 146 + return a[3] > b[3] 147 + end) 145 148 end 146 149 147 150 return Picker