view src/testdir/check.vim @ 17584:65a8099fc0e8 v8.1.1789

patch 8.1.1789: cannot see file name of preview popup window commit https://github.com/vim/vim/commit/90f3e7ac56056ffad50bac9d4497b5830c37ab26 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 1 22:40:44 2019 +0200 patch 8.1.1789: cannot see file name of preview popup window Problem: Cannot see file name of preview popup window. Solution: Add the file name as the title.
author Bram Moolenaar <Bram@vim.org>
date Thu, 01 Aug 2019 22:45:05 +0200
parents 4a22102fda8f
children d7708560b77c
line wrap: on
line source

" Command to check for the presence of a feature.
command -nargs=1 CheckFeature call CheckFeature(<f-args>)
func CheckFeature(name)
  if !has(a:name)
    throw 'Skipped: ' .. a:name .. ' feature missing'
  endif
endfunc

" Command to check for the presence of a working option.
command -nargs=1 CheckOption call CheckOption(<f-args>)
func CheckOption(name)
  if !exists('+' .. a:name)
    throw 'Skipped: ' .. a:name .. ' option not supported'
  endif
endfunc

" Command to check for the presence of a function.
command -nargs=1 CheckFunction call CheckFunction(<f-args>)
func CheckFunction(name)
  if !exists('*' .. a:name)
    throw 'Skipped: ' .. a:name .. ' function missing'
  endif
endfunc

" Command to check for running on MS-Windows
command CheckMSWindows call CheckMSWindows()
func CheckMSWindows()
  if !has('win32')
    throw 'Skipped: only works on MS-Windows'
  endif
endfunc

" Command to check for running on Unix
command CheckUnix call CheckUnix()
func CheckUnix()
  if !has('unix')
    throw 'Skipped: only works on Unix'
  endif
endfunc