view src/testdir/test97.in @ 5716:fb24b025c7cf v7.4.203

updated for version 7.4.203 Problem: Parsing 'errorformat' is not correct. Solution: Reset "multiignore" at the start of a multi-line message. (Lcd)
author Bram Moolenaar <bram@vim.org>
date Wed, 12 Mar 2014 19:41:55 +0100
parents 93cccad6a26b
children 8e9db1f27a00
line wrap: on
line source

Test whether glob()/globpath() return correct results with certain escaped
characters.

STARTTEST
:so small.vim
:set shell=doesnotexist
:e test.out
:put =glob('Xxx\{')
:put =glob('Xxx\$')
:w! Xxx{
:w! Xxx\$
:put =glob('Xxx\{')
:put =glob('Xxx\$')
:w
:qa!
ENDTEST