view src/testdir/test105.ok @ 7036:5f00b8d7148f v7.4.831

commit https://github.com/vim/vim/commit/3f188935ec4db5117c4a64cc3f71219175624745 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 25 13:57:04 2015 +0200 patch 7.4.831 Problem: When expanding on the command line and encountering an error, the command is executed anyway. Solution: Bail out when an error is detected.
author Christian Brabandt <cb@256bit.org>
date Tue, 25 Aug 2015 17:20:26 +0200
parents 1e272e318daa
children 8af6e33e4d4c
line wrap: on
line source

fnamemodify('.',              ':p'      )[-1:]	'/'
fnamemodify('.',              ':p:h'    )[-1:]	'r'
fnamemodify('test.out',       ':p'      )[-1:]	't'
fnamemodify('test.out',       ':.'      )	'test.out'
fnamemodify('../testdir/a',   ':.'      )	'a'
fnamemodify('test.out',       ':~'      )	'~/testdir/test.out'
fnamemodify('../testdir/a',   ':~'      )	'~/testdir/a'
fnamemodify('../testdir/a',   ':t'      )	'a'
fnamemodify('.',              ':p:t'    )	''
fnamemodify('test.out',       ':p:t'    )	'test.out'
fnamemodify('test.out',       ':p:e'    )	'out'
fnamemodify('test.out',       ':p:t:e'  )	'out'
fnamemodify('abc.fb2.tar.gz', ':r'      )	'abc.fb2.tar'
fnamemodify('abc.fb2.tar.gz', ':r:r'    )	'abc.fb2'
fnamemodify('abc.fb2.tar.gz', ':r:r:r'  )	'abc'
substitute(fnamemodify('abc.fb2.tar.gz', ':p:r:r'), '.*\(testdir/.*\)', '\1', '')	'testdir/abc.fb2'
fnamemodify('abc.fb2.tar.gz', ':e'      )	'gz'
fnamemodify('abc.fb2.tar.gz', ':e:e'    )	'tar.gz'
fnamemodify('abc.fb2.tar.gz', ':e:e:e'  )	'fb2.tar.gz'
fnamemodify('abc.fb2.tar.gz', ':e:e:e:e')	'fb2.tar.gz'
fnamemodify('abc.fb2.tar.gz', ':e:e:r'  )	'tar'
fnamemodify('abc def',        ':S'      )	'''abc def'''
fnamemodify('abc" "def',      ':S'      )	'''abc" "def'''
fnamemodify('abc"%"def',      ':S'      )	'''abc"%"def'''
fnamemodify('abc'' ''def',    ':S'      )	'''abc''\'''' ''\''''def'''
fnamemodify('abc''%''def',    ':S'      )	'''abc''\''''%''\''''def'''
fnamemodify("abc\ndef",       ':S'      )	'''abc^@def'''
fnamemodify("abc\ndef",       ':S'      )	'''abc\^@def'''
vim: ts=8