neovim

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

commit 606af7887bfccba026b792191b55da15a1b575fc
parent 41785b1b0cd8b54700110d0c83f599126b38a8c9
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Wed,  6 Jul 2022 07:36:36 +0800

vim-patch:8.2.5162: reading before the start of the line with BS in Replace mode (#19241)

Problem:    Reading before the start of the line with BS in Replace mode.
Solution:   Check the cursor column is more than zero.
https://github.com/vim/vim/commit/0971c7a4e537ea120a6bb2195960be8d0815e97b
Diffstat:
Msrc/nvim/edit.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/nvim/edit.c b/src/nvim/edit.c @@ -8373,7 +8373,7 @@ static bool ins_bs(int c, int mode, int *inserted_space_p) } // delete characters until we are at or before want_vcol - while (vcol > want_vcol + while (vcol > want_vcol && curwin->w_cursor.col > 0 && (cc = *(get_cursor_pos_ptr() - 1), ascii_iswhite(cc))) { ins_bs_one(&vcol); }