blob: a85798bab3cb99603e01f1a51c3cfc637ce3b451 [file] [log] [blame]
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02001" Tests for the preview window
Bram Moolenaar5a4c3082019-12-01 15:23:11 +01002source check.vim
3CheckFeature quickfix
Bram Moolenaarc31f9ae2017-07-23 22:02:02 +02004
5func Test_Psearch()
6 " this used to cause ml_get errors
7 help
8 let wincount = winnr('$')
9 0f
10 ps.
11 call assert_equal(wincount + 1, winnr('$'))
12 pclose
13 call assert_equal(wincount, winnr('$'))
14 bwipe
15endfunc