view src/testdir/test_lua.vim @ 11597:72b20190dce6 v8.0.0681

patch 8.0.0681: unnamed register only contains the last deleted text commit https://github.com/vim/vim/commit/18d90b95c49d9ff1c635dd762864022aab8e71f1 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 27 15:39:14 2017 +0200 patch 8.0.0681: unnamed register only contains the last deleted text Problem: Unnamed register only contains the last deleted text when appending deleted text to a register. (Wolfgang Jeltsch) Solution: Only set y_previous when not using y_append. (Christian Brabandt)
author Christian Brabandt <cb@256bit.org>
date Tue, 27 Jun 2017 15:45:03 +0200
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