comparison src/testdir/test_popupwin.vim @ 21552:cbc570e66d11 v8.2.1326

patch 8.2.1326: Vim9: skipping over white space after list Commit: https://github.com/vim/vim/commit/9d489566815d7913afc5dfc2a772bacede3970fb Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 30 20:08:50 2020 +0200 patch 8.2.1326: Vim9: skipping over white space after list Problem: Vim9: skipping over white space after list. Solution: Do not skip white space, a following [] would be misinterpreted. (closes #6552) Fix a few side effects.
author Bram Moolenaar <Bram@vim.org>
date Thu, 30 Jul 2020 20:15:05 +0200
parents 27bbd918e70c
children b997e872ff95
comparison
equal deleted inserted replaced
21551:24c7210c4134 21552:cbc570e66d11
586 let lines =<< trim END 586 let lines =<< trim END
587 set foldmethod=marker 587 set foldmethod=marker
588 call setline(1, range(100)) 588 call setline(1, range(100))
589 for nr in range(7) 589 for nr in range(7)
590 call setline(nr * 12 + 1, "fold {{{") 590 call setline(nr * 12 + 1, "fold {{{")
591 call setline(nr * 12 + 11 , "end }}}") 591 call setline(nr * 12 + 11, "end }}}")
592 endfor 592 endfor
593 %foldclose 593 %foldclose
594 set shell=/bin/sh noruler 594 set shell=/bin/sh noruler
595 let $PS1 = 'vim> ' 595 let $PS1 = 'vim> '
596 terminal ++rows=4 596 terminal ++rows=4