annotate src/testdir/test102.in @ 6145:2fd550c75256
v7.4.410
updated for version 7.4.410
Problem: Fold does not open after search when there is a CmdwinLeave
autocommand.
Solution: Restore KeyTyped. (Jacob Niehus)
author |
Bram Moolenaar <bram@vim.org> |
date |
Sun, 17 Aug 2014 17:24:07 +0200 |
parents |
6f88e2dafbf6 |
children |
|
rev |
line source |
5481
|
1 Test if fnameescape is correct for special chars like !
|
|
2
|
|
3 STARTTEST
|
6092
|
4 :so small.vim
|
5481
|
5 :%d
|
|
6 :let fname = 'Xspa ce'
|
|
7 :try | exe "w! " . fnameescape(fname) | put='Space' | endtry
|
|
8 :let fname = 'Xemark!'
|
|
9 :try | exe "w! " . fnameescape(fname) | put='ExclamationMark' | endtry
|
|
10 :w! test.out
|
|
11 :qa!
|
|
12 ENDTEST
|
|
13
|