blob: 13e9dd5b6e54a9f9239891dd11f123f95781f590 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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
|