Mercurial > vim
view src/testdir/test_eval_func.vim @ 7455:79e92f5d846c
Added tag v7.4.1030 for changeset 4ff843da79fdf9df77db6f75486cb89413b09927
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 02 Jan 2016 20:00:05 +0100 |
parents | 1a5ed2626b26 |
children | 63b02fcf1361 |
line wrap: on
line source
" Vim script used in test_eval.in. Needed for script-local function. func! s:Testje() return "foo" endfunc let Bar = function('s:Testje') $put ='s:Testje exists: ' . exists('s:Testje') $put ='func s:Testje exists: ' . exists('*s:Testje') $put ='Bar exists: ' . exists('Bar') $put ='func Bar exists: ' . exists('*Bar')