neovim

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

commit 4b8980949cd47f8206b2fbc266dfeb0920fd1191
parent c4ac36bfd9bc9826dde01839d10d0e65a7b3c9e2
Author: skewb1k <skewb1kunix@gmail.com>
Date:   Tue, 18 Nov 2025 04:49:14 +0300

fix(lsp): set concealcursor='' in LSP floating windows #36596

Problem:
Users often jump and navigate through LSP windows to yank text.
Concealed markdown can make navigation through hyperlinks and code
blocks more difficult.

Solution:
Change 'concealcursor' from 'n' to '' to preserve clean display
while improving navigation and selection of the LSP response.

Closes #36537
Diffstat:
Mruntime/lua/vim/lsp/util.lua | 2+-
Mtest/functional/plugin/lsp/utils_spec.lua | 6+++---
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/runtime/lua/vim/lsp/util.lua b/runtime/lua/vim/lsp/util.lua @@ -1769,7 +1769,7 @@ function M.open_floating_preview(contents, syntax, opts) if do_stylize then vim.wo[floating_winnr].conceallevel = 2 - vim.wo[floating_winnr].concealcursor = 'n' + vim.wo[floating_winnr].concealcursor = '' vim.bo[floating_bufnr].filetype = 'markdown' vim.treesitter.start(floating_bufnr) if not opts.height then diff --git a/test/functional/plugin/lsp/utils_spec.lua b/test/functional/plugin/lsp/utils_spec.lua @@ -367,7 +367,7 @@ describe('vim.lsp.util', function() screen:expect([[ | ┌─────────┐{1: }| - │{100:^local}{101: }{102:foo}│{1: }| + │{101:^```}{4: }│{1: }| └─────────┘{1: }| {1:~ }|*9 | @@ -401,8 +401,8 @@ describe('vim.lsp.util', function() screen:expect([[ | ┌─────────┐{1: }| - │{4:foo }│{1: }| - │{100:^local}{101: }{102:bar}│{1: }| + │{100:local}{101: }{102:bar}│{1: }| + │{101:^```}{4: }│{1: }| └─────────┘{1: }| {1:~ }|*8 |