Bram Moolenaar | f4e1143 | 2013-07-03 16:53:03 +0200 | [diff] [blame^] | 1 | Test whether glob()/globpath() return correct results with certain escaped |
2 | characters. | ||||
3 | |||||
4 | STARTTEST | ||||
5 | :so small.vim | ||||
6 | :set shell=doesnotexist | ||||
7 | :e test.out | ||||
8 | :put =glob('Xxx\{') | ||||
9 | :put =glob('Xxx\$') | ||||
10 | :w! Xxx{ | ||||
11 | :w! Xxx\$ | ||||
12 | :put =glob('Xxx\{') | ||||
13 | :put =glob('Xxx\$') | ||||
14 | :w | ||||
15 | :qa! | ||||
16 | ENDTEST | ||||
17 |