vim-patch:8.2.0133: invalid memory access with search command

Problem:    Invalid memory access with search command.
Solution:   When :normal runs out of characters in bracketed paste mode break
            out of the loop.(closes vim/vim#5511)
98a336dd49
This commit is contained in:
Jan Edmund Lazo 2020-02-22 15:35:11 -05:00
parent 4de2957a99
commit 55e3f21110
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15
1 changed files with 5 additions and 0 deletions

View File

@ -698,3 +698,8 @@ func Test_search_display_pattern()
set norl
endif
endfunc
func Test_search_special()
" this was causing illegal memory access
exe "norm /\x80PS"
endfunc