neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 6005fcf6719b0fae9c28c6e0ac31086f2894e238
parent 3586e047e64dac73b734b8b73311d82b3f405caa
Author: Yi Ming <ofseed@foxmail.com>
Date:   Wed, 27 Aug 2025 19:24:08 +0800

fix(lsp): `opts.wrap` always `true`

Diffstat:
Mruntime/lua/vim/lsp/inline_completion.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runtime/lua/vim/lsp/inline_completion.lua b/runtime/lua/vim/lsp/inline_completion.lua @@ -373,7 +373,7 @@ function M.select(opts) end local count = opts.count or vim.v.count1 - local wrap = opts.wrap or true + local wrap = opts.wrap ~= false local current = completor.current if not current then