mirror of
https://github.com/neovim/neovim.git
synced 2026-04-26 09:14:15 +00:00
- Cleanup source tree, leaving only files necessary for compilation/testing - Process files through unifdef to remove tons of FEAT_* macros - Process files through uncrustify to normalize source code formatting. - Port the build system to cmake
18 lines
264 B
Plaintext
18 lines
264 B
Plaintext
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
|
|
|