Re: Glob filename containing { (left brace) in Windows

2018-02-11 Thread Lifepillar
On 11/02/2018 20:18, Nikolay Aleksandrovich Pavlov wrote: 2018-02-11 21:44 GMT+03:00 Lifepillar : Is there any way for glob() to expand a filename containing { (left brace) in Windows *without* removing { from isfname? For example, if the current dir has a file called '{foo', then :echo glo

Re: Glob filename containing { (left brace) in Windows

2018-02-11 Thread Nikolay Aleksandrovich Pavlov
2018-02-11 21:44 GMT+03:00 Lifepillar : > Is there any way for glob() to expand a filename containing > { (left brace) in Windows *without* removing { from isfname? > > For example, if the current dir has a file called '{foo', then > > :echo glob('\{*') > > correctly expands to '{foo' provided th

Glob filename containing { (left brace) in Windows

2018-02-11 Thread Lifepillar
Is there any way for glob() to expand a filename containing { (left brace) in Windows *without* removing { from isfname? For example, if the current dir has a file called '{foo', then :echo glob('\{*') correctly expands to '{foo' provided that isfname does not contain {; otherwise, the above