view src/testdir/test_preview.vim @ 19164:bfe90421e223 v8.2.0141

patch 8.2.0141: no swift filetype detection Commit: https://github.com/vim/vim/commit/0d76683e094c6cac2e879601aff3acf1163cbe0b Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 22 22:10:54 2020 +0100 patch 8.2.0141: no swift filetype detection Problem: No swift filetype detection. Solution: Add swift, swiftgyb and sil. (Emir Sar?, closes https://github.com/vim/vim/issues/5517)
author Bram Moolenaar <Bram@vim.org>
date Wed, 22 Jan 2020 22:15:09 +0100
parents 068337e86133
children 2c4d9ca33769
line wrap: on
line source

" Tests for the preview window
source check.vim
CheckFeature quickfix

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