neovim

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

commit be73c35943f85e7835c3a0fc89bddaeba944db29
parent 68a54bfda65f5ddb9b96001ab22c55e71eeb45ef
Author: bfredl <bjorn.linse@gmail.com>
Date:   Sat, 18 Oct 2025 20:07:19 +0200

Merge pull request #36242 from bfredl/o_dod

fix(tui): use the correct offset for invisible cursor after sync
Diffstat:
Msrc/nvim/tui/tui.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c @@ -2451,7 +2451,7 @@ static size_t flush_buf_end(TUIData *tui, char *buf, size_t len) } TPVAR null_params[9] = { 0 }; if (str != NULL) { - offset += terminfo_fmt(buf, buf + len, str, null_params); + offset += terminfo_fmt(buf + offset, buf + len, str, null_params); } return offset;