view src/testdir/test105.ok @ 7109:fa95595fbc52 v7.4.866

commit https://github.com/vim/vim/commit/93c88e0f6a4a8f7634ed84721daf4af46fc0d5db Author: Bram Moolenaar <Bram@vim.org> Date: Tue Sep 15 14:12:05 2015 +0200 patch 7.4.866 Problem: Crash when changing the 'tags' option from a remote command. (Benjamin Fritz) Solution: Instead of executing messages immediately, use a queue, like for netbeans. (James Kolb)
author Christian Brabandt <cb@256bit.org>
date Tue, 15 Sep 2015 14:15:05 +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