view src/testdir/test_preview.vim @ 12684:185f8dbdcf26 v8.0.1220

patch 8.0.1220: skipping empty statusline groups is not correct commit https://github.com/vim/vim/commit/235dddf1f4afe3a40047dbf2aca1bd177b7be18b Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 26 18:21:24 2017 +0200 patch 8.0.1220: skipping empty statusline groups is not correct Problem: Skipping empty statusline groups is not correct. Solution: Also set group_end_userhl. (itchyny)
author Christian Brabandt <cb@256bit.org>
date Thu, 26 Oct 2017 18:30:05 +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