comparison src/testdir/test_vim9_cmd.vim @ 26127:80e69293217c v8.2.3596

patch 8.2.3596: crash when using :pedit in Vim9 script Commit: https://github.com/vim/vim/commit/733b124a9098d5e2f028fd2e12012b831c9e9024 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Mon Nov 15 11:22:09 2021 +0000 patch 8.2.3596: crash when using :pedit in Vim9 script Problem: Crash when using :pedit in Vim9 script. Solution: Move check for arguments to after checking there are arguments. (Yegappan Lakshmanan, closes #9134, closes #9135)
author Bram Moolenaar <Bram@vim.org>
date Mon, 15 Nov 2021 12:30:07 +0100
parents d9f9cdb2337e
children 3da380450cce
comparison
equal deleted inserted replaced
26126:9a8de2345380 26127:80e69293217c
1568 s# pat#repl 1568 s# pat#repl
1569 END 1569 END
1570 CheckDefExecAndScriptFailure(lines, 'E486:', 1) 1570 CheckDefExecAndScriptFailure(lines, 'E486:', 1)
1571 enddef 1571 enddef
1572 1572
1573 " Test for the 'popuppreview' option
1574 def Test_popuppreview()
1575 set previewpopup=height:10,width:60
1576 pedit Xfile
1577 var id = popup_findpreview()
1578 assert_notequal(id, 0)
1579 assert_match('Xfile', popup_getoptions(id).title)
1580 popup_clear()
1581 set previewpopup&
1582 enddef
1583
1573 1584
1574 " vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker 1585 " vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker