Mercurial > vim
view src/testdir/test_exit.vim @ 21060:89aba7895bb2 v8.2.1081
patch 8.2.1081: Lua: cannot use table.insert() and table.remove()
Commit: https://github.com/vim/vim/commit/a1f9f8666ed3a462eb8a518e78418c57dc41bbd4
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jun 28 22:41:26 2020 +0200
patch 8.2.1081: Lua: cannot use table.insert() and table.remove()
Problem: Lua: cannot use table.insert() and table.remove().
Solution: Add the list functions. (Prabir Shrestha, closes https://github.com/vim/vim/issues/6353)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 28 Jun 2020 22:45:04 +0200 |
parents | fa6efc49d71f |
children | 08940efa6b4e |
line wrap: on
line source
" Tests for exiting Vim. source shared.vim func Test_exiting() let after =<< trim [CODE] au QuitPre * call writefile(["QuitPre"], "Xtestout") au ExitPre * call writefile(["ExitPre"], "Xtestout", "a") quit [CODE] if RunVim([], after, '') call assert_equal(['QuitPre', 'ExitPre'], readfile('Xtestout')) endif call delete('Xtestout') let after =<< trim [CODE] au QuitPre * call writefile(["QuitPre"], "Xtestout") au ExitPre * call writefile(["ExitPre"], "Xtestout", "a") help wincmd w quit [CODE] if RunVim([], after, '') call assert_equal(['QuitPre', 'ExitPre'], readfile('Xtestout')) endif call delete('Xtestout') let after =<< trim [CODE] au QuitPre * call writefile(["QuitPre"], "Xtestout") au ExitPre * call writefile(["ExitPre"], "Xtestout", "a") split new qall [CODE] if RunVim([], after, '') call assert_equal(['QuitPre', 'ExitPre'], readfile('Xtestout')) endif call delete('Xtestout') " ExitPre autocommand splits the window, so that it's no longer the last one. let after =<< trim [CODE] au QuitPre * call writefile(["QuitPre"], "Xtestout", "a") au ExitPre * call writefile(["ExitPre"], "Xtestout", "a") augroup nasty au ExitPre * split augroup END quit augroup nasty au! ExitPre augroup END quit [CODE] if RunVim([], after, '') call assert_equal(['QuitPre', 'ExitPre', 'QuitPre', 'ExitPre'], \ readfile('Xtestout')) endif call delete('Xtestout') " ExitPre autocommand splits and closes the window, so that there is still " one window but it's a different one. let after =<< trim [CODE] au QuitPre * call writefile(["QuitPre"], "Xtestout", "a") au ExitPre * call writefile(["ExitPre"], "Xtestout", "a") augroup nasty au ExitPre * split | only augroup END quit augroup nasty au! ExitPre augroup END quit [CODE] if RunVim([], after, '') call assert_equal(['QuitPre', 'ExitPre', 'QuitPre', 'ExitPre'], \ readfile('Xtestout')) endif call delete('Xtestout') endfunc