fix(lsp): opts.wrap always true

This commit is contained in:
Yi Ming
2025-08-27 19:24:08 +08:00
parent 3586e047e6
commit 6005fcf671

View File

@@ -373,7 +373,7 @@ function M.select(opts)
end end
local count = opts.count or vim.v.count1 local count = opts.count or vim.v.count1
local wrap = opts.wrap or true local wrap = opts.wrap ~= false
local current = completor.current local current = completor.current
if not current then if not current then