comparison src/testdir/test_popupwin.vim @ 27457:4c16acb2525f v8.2.4257

patch 8.2.4257: Vim9: finding global function without g: prefix inconsistent Commit: https://github.com/vim/vim/commit/62aec93bfdb9e1b40d03a6d2e8e9511f8b1bdb2d Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 29 21:45:34 2022 +0000 patch 8.2.4257: Vim9: finding global function without g: prefix inconsistent Problem: Vim9: finding global function without g: prefix but not finding global variable is inconsistent. Solution: Require using g: for a global function. Change the vim9.vim script into a Vim9 script with exports. Fix that import in legacy script does not work.
author Bram Moolenaar <Bram@vim.org>
date Sat, 29 Jan 2022 23:00:05 +0100
parents 8b7f01b39d79
children a14c4d3e3260
comparison
equal deleted inserted replaced
27456:a8e2d91995ce 27457:4c16acb2525f
2799 split 2799 split
2800 wincmd b 2800 wincmd b
2801 assert_equal(2, winnr()) 2801 assert_equal(2, winnr())
2802 var buf = term_start(&shell, {hidden: 1}) 2802 var buf = term_start(&shell, {hidden: 1})
2803 popup_create(buf, {}) 2803 popup_create(buf, {})
2804 TermWait(buf, 100) 2804 g:TermWait(buf, 100)
2805 popup_clear(true) 2805 popup_clear(true)
2806 assert_equal(2, winnr()) 2806 assert_equal(2, winnr())
2807 2807
2808 quit 2808 quit
2809 exe 'bwipe! ' .. buf 2809 exe 'bwipe! ' .. buf