view src/testdir/test_preview.vim @ 16018:aa208549a80b

Added tag v8.1.1014 for changeset 6230ff29c39ae27a85eb6d8433bc760e89dc0264
author Bram Moolenaar <Bram@vim.org>
date Sun, 17 Mar 2019 16:00:05 +0100
parents 5e36b2f825cb
children 068337e86133
line wrap: on
line source

" Tests for the preview window

func Test_Psearch()
  " this used to cause ml_get errors
  help
  let wincount = winnr('$')
  0f
  ps.
  call assert_equal(wincount + 1, winnr('$'))
  pclose
  call assert_equal(wincount, winnr('$'))
  bwipe
endfunc