Mercurial > vim
view src/testdir/test97.in @ 9738:6818e3c96473 v7.4.2144
commit https://github.com/vim/vim/commit/796aa9c804f09276bd3cc45123f4a191a001dec2
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Aug 2 21:41:28 2016 +0200
patch 7.4.2144
Problem: On MS-Windows quickix does not handle a line with 1023 bytes
ending in CR-LF properly.
Solution: Don't consider CR a line break. (Ken Takata)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 02 Aug 2016 21:45:05 +0200 |
parents | 6d0a1132dd71 |
children | e5dddd764fef |
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