5104
|
1 Test whether glob()/globpath() return correct results with certain escaped
|
|
2 characters.
|
|
3
|
|
4 STARTTEST
|
|
5 :so small.vim
|
5879
|
6 :" make sure glob() doesn't use the shell
|
5104
|
7 :set shell=doesnotexist
|
5879
|
8 :" consistent sorting of file names
|
|
9 :set nofileignorecase
|
5104
|
10 :e test.out
|
5873
|
11 :$put =glob('Xxx\{')
|
|
12 :$put =glob('Xxx\$')
|
5104
|
13 :w! Xxx{
|
|
14 :w! Xxx\$
|
5873
|
15 :$put =glob('Xxx\{')
|
|
16 :$put =glob('Xxx\$')
|
|
17 :"
|
|
18 :$put =string(globpath('sautest/autoload', '*.vim'))
|
|
19 :$put =string(globpath('sautest/autoload', '*.vim', 0, 1))
|
5104
|
20 :w
|
|
21 :qa!
|
|
22 ENDTEST
|
|
23
|