forked from aniani/vim
Problem: Test 97 fails on Mac. Solution: Do not ignore case in file names. (Jun Takimoto)
24 lines
483 B
Plaintext
24 lines
483 B
Plaintext
Test whether glob()/globpath() return correct results with certain escaped
|
|
characters.
|
|
|
|
STARTTEST
|
|
:so small.vim
|
|
:" make sure glob() doesn't use the shell
|
|
:set shell=doesnotexist
|
|
:" consistent sorting of file names
|
|
:set nofileignorecase
|
|
:e test.out
|
|
:$put =glob('Xxx\{')
|
|
:$put =glob('Xxx\$')
|
|
:w! Xxx{
|
|
:w! Xxx\$
|
|
:$put =glob('Xxx\{')
|
|
:$put =glob('Xxx\$')
|
|
:"
|
|
:$put =string(globpath('sautest/autoload', '*.vim'))
|
|
:$put =string(globpath('sautest/autoload', '*.vim', 0, 1))
|
|
:w
|
|
:qa!
|
|
ENDTEST
|
|
|