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(picker): trigger `View:showmatches()` on scroll
robinwobin.dev
3 months ago
55efe192
ea47ac8a
+2
1 changed file
expand all
collapse all
unified
split
lua
artio
picker.lua
+2
lua/artio/picker.lua
···
40
40
local default_actions = {
41
41
down = function(self, _)
42
42
self.idx = self.idx + 1
43
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
48
+
self.view:showmatches() -- adjust for scrolling
47
49
self.view:hlselect()
48
50
end,
49
51
accept = function(_, co)