Mercurial > vim
view src/testdir/test_eval_func.vim @ 6813:ea0468670fbe v7.4.728
patch 7.4.728
Problem: Can't build with some version of Visual Studio 2015.
Solution: Recognize another version 14 number. (Sinan)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 06 May 2015 11:33:47 +0200 |
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')