view src/testdir/test_lua.vim @ 13440:22439cdda382 v8.0.1594

patch 8.0.1594: :conform qall not tested with active terminal window commit https://github.com/vim/vim/commit/435acdb88c849c6bac44ef30f24f29618b36af50 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 10 20:51:25 2018 +0100 patch 8.0.1594: :conform qall not tested with active terminal window Problem: :conform qall not tested with active terminal window. Solution: Add a test.
author Christian Brabandt <cb@256bit.org>
date Sat, 10 Mar 2018 21:00:07 +0100
parents 6c3d42d18366
children 2e95ea9afa1e
line wrap: on
line source

" Tests for Lua.
" TODO: move tests from test85.in here.

if !has('lua')
  finish
endif

func Test_luado()
  new
  call setline(1, ['one', 'two', 'three'])
  luado vim.command("%d_")
  bwipe!

  " Check switching to another buffer does not trigger ml_get error.
  new
  let wincount = winnr('$')
  call setline(1, ['one', 'two', 'three'])
  luado vim.command("new")
  call assert_equal(wincount + 1, winnr('$'))
  bwipe!
  bwipe!
endfunc