From 04b59ebd851ce950340403eff019a704ecbab3f7 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Mon, 4 Oct 2021 02:53:58 +0800 Subject: vim-patch:8.2.3465: cannot detect insert scroll mode (#15885) Problem: Cannot detect insert scroll mode. Solution: Add "scroll" to complete_info(). (closes vim/vim#8943) https://github.com/vim/vim/commit/27fef59dd1dd75f50c366f7f616ffa4451560452 --- src/nvim/testdir/test_popup.vim | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/nvim/testdir') diff --git a/src/nvim/testdir/test_popup.vim b/src/nvim/testdir/test_popup.vim index 710450293c..eb367cfe5c 100644 --- a/src/nvim/testdir/test_popup.vim +++ b/src/nvim/testdir/test_popup.vim @@ -950,6 +950,10 @@ func Test_popup_complete_info_01() \ ["\", 'ctrl_x'], \ ["\\", 'keyword'], \ ["\\", 'keyword'], + \ ["\\", 'scroll'], + \ ["\\", 'scroll'], + \ ["\\\\", 'scroll'], + \ ["\\\\", 'scroll'], \ ["\\", 'whole_line'], \ ["\\", 'files'], \ ["\\", 'tags'], -- cgit