Mercurial > vim
view src/testdir/test97.in @ 10619:3cc3825f1f53
Added tag v8.0.0198 for changeset 4ee16e5e2e26296627d7038b440e94589a348c81
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 17 Jan 2017 16:30:05 +0100 |
parents | e5dddd764fef |
children |
line wrap: on
line source
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