neovim

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

commit c57c25649be1d942a7f9ad78e26ac221a3239099
parent d4b9f8186d4a73a661a407efb63fe8abca2c4e88
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Tue,  2 Aug 2022 05:57:46 +0800

vim-patch:8.2.4899: with latin1 encoding CTRL-W might go before the cmdline

Problem:    With latin1 encoding CTRL-W might go before the start of the
            command line.
Solution:   Check already being at the start of the command line.
https://github.com/vim/vim/commit/ef02f16609ff0a26ffc6e20263523424980898fe

Diffstat:
Msrc/nvim/testdir/test_cmdline.vim | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/nvim/testdir/test_cmdline.vim b/src/nvim/testdir/test_cmdline.vim @@ -642,6 +642,9 @@ func Test_cmdline_remove_char() call feedkeys(":abc def\<S-Left>\<C-U>\<C-B>\"\<CR>", 'tx') call assert_equal('"def', @:, e) + + " This was going before the start in latin1. + call feedkeys(": \<C-W>\<CR>", 'tx') endfor let &encoding = encoding_save