comparison src/testdir/test_vim9_cmd.vim @ 21158:157fe2d26e16 v8.2.1130

patch 8.2.1130: Vim9: bar not recognized after function call Commit: https://github.com/vim/vim/commit/788123c00c4b7acc4e6ba3e9f1cc8b175ae9aae8 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 5 15:32:17 2020 +0200 patch 8.2.1130: Vim9: bar not recognized after function call Problem: Vim9: bar not recognized after function call Solution: Skip whitespace. (closes https://github.com/vim/vim/issues/6391)
author Bram Moolenaar <Bram@vim.org>
date Sun, 05 Jul 2020 15:45:03 +0200
parents eb6c27af07dd
children f45ce1ce284c
comparison
equal deleted inserted replaced
21157:151e1935e327 21158:157fe2d26e16
212 def RedrawAndEcho() 212 def RedrawAndEcho()
213 let x = 'did redraw' 213 let x = 'did redraw'
214 redraw | echo x 214 redraw | echo x
215 enddef 215 enddef
216 RedrawAndEcho() 216 RedrawAndEcho()
217 assert_match('did redraw', Screenline(&lines))
218
219 def CallAndEcho()
220 let x = 'did redraw'
221 reg_executing() | echo x
222 enddef
223 CallAndEcho()
217 assert_match('did redraw', Screenline(&lines)) 224 assert_match('did redraw', Screenline(&lines))
218 225
219 if has('unix') 226 if has('unix')
220 # bar in filter write command does not start new command 227 # bar in filter write command does not start new command
221 def WriteToShell() 228 def WriteToShell()