Mercurial > vim
annotate src/testdir/test_eval_func.vim @ 19301:80baa37506d0 v8.2.0209
patch 8.2.0209: function a bit far away from where it's used
Commit: https://github.com/vim/vim/commit/80147dda4f5a25c9533bc88583c87dbbb0a0f1f1
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Feb 4 22:32:59 2020 +0100
patch 8.2.0209: function a bit far away from where it's used
Problem: Function a bit far away from where it's used.
Solution: Move function close to where it's used. (Ken Takata, closes https://github.com/vim/vim/issues/5569)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 04 Feb 2020 22:45:04 +0100 |
parents | 63b02fcf1361 |
children |
rev | line source |
---|---|
5850 | 1 " Vim script used in test_eval.in. Needed for script-local function. |
2 | |
15406
63b02fcf1361
patch 8.1.0711: test files still use function!
Bram Moolenaar <Bram@vim.org>
parents:
5850
diff
changeset
|
3 func s:Testje() |
5850 | 4 return "foo" |
5 endfunc | |
6 let Bar = function('s:Testje') | |
7 $put ='s:Testje exists: ' . exists('s:Testje') | |
8 $put ='func s:Testje exists: ' . exists('*s:Testje') | |
9 $put ='Bar exists: ' . exists('Bar') | |
10 $put ='func Bar exists: ' . exists('*Bar') |