We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99e2c66 commit 6f046ffCopy full SHA for 6f046ff
lua/blink/cmp/completion/list.lua
@@ -213,7 +213,7 @@ function list.select_next(opts)
213
return list.select(1, opts)
214
end
215
216
- if opts and opts.jump_by then return list.jump_by(1, opts) end
+ if opts and opts.jump_by and list.jump_by(1, opts) then return true end
217
218
-- fallback, select the next item
219
local count = opts and opts.count or 1
@@ -243,7 +243,7 @@ function list.select_prev(opts)
243
return list.select(#list.items, opts)
244
245
246
- if opts and opts.jump_by then return list.jump_by(-1, opts) end
+ if opts and opts.jump_by and list.jump_by(-1, opts) then return true end
247
248
-- fallback, select the previous item
249
0 commit comments