view src/testdir/test102.in @ 8312:1001ec135d6e v7.4.1448

commit https://github.com/vim/vim/commit/c5215e943bf5a045089693b60b8805a794d8c2f6 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 28 16:29:50 2016 +0100 patch 7.4.1448 Problem: JSON tests fail if 'encoding' is not utf-8. Solution: Force encoding to utf-8.
author Christian Brabandt <cb@256bit.org>
date Sun, 28 Feb 2016 16:30:05 +0100
parents 6f88e2dafbf6
children
line wrap: on
line source

Test if fnameescape is correct for special chars like !

STARTTEST
:so small.vim
:%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