view src/testdir/test_preview.vim @ 18287:50a16f2a54a8 v8.1.2138

patch 8.1.2138: including the build number in the Win32 binary is confusing Commit: https://github.com/vim/vim/commit/4cdbed33e467bdfed9aa90dc0f96642c91db32bb Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 12 15:02:47 2019 +0200 patch 8.1.2138: including the build number in the Win32 binary is confusing Problem: Including the build number in the Win32 binary is confusing. Solution: Only use the patchlevel.
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Oct 2019 15:15:03 +0200
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