Mercurial > vim
view src/testdir/test102.in @ 5737:e25a04c1c515 v7.4.213
updated for version 7.4.213
Problem: It's not possible to open a new buffer without creating a swap
file.
Solution: Add the ":noswapfile" modifier. (Christian Brabandt)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sun, 23 Mar 2014 16:04:02 +0100 |
parents | 31217cc48e7d |
children | 6f88e2dafbf6 |
line wrap: on
line source
Test if fnameescape is correct for special chars like ! STARTTEST :%d :let fname = 'Xspa ce' :try | exe "w! " . fnameescape(fname) | put='Space' | endtry :let fname = 'Xemark!' :try | exe "w! " . fnameescape(fname) | put='ExclamationMark' | endtry :w! test.out :qa! ENDTEST