Mercurial > vim
annotate src/testdir/test97.in @ 7160:accd3a0e9bf4 v7.4.891
commit https://github.com/vim/vim/commit/089af18d1fd0961ff504ee72db0156bbfe509cdf
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Oct 7 11:41:49 2015 +0200
patch 7.4.891
Problem: Indentation of array initializer is wrong.
Solution: Avoid that calling find_start_rawstring() changes the position
returned by find_start_comment(), add a test. (Hirohito Higashi)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 07 Oct 2015 11:45:06 +0200 |
parents | 6d0a1132dd71 |
children | e5dddd764fef |
rev | line source |
---|---|
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 |