diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2016-01-29 00:23:53 -0500 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2016-01-29 00:23:53 -0500 |
| commit | 4c960c3d78d9aaae77c469c91c88280c9f5efbf2 (patch) | |
| tree | a3ced2367908813ace59cb13dfdeaea7169e16c6 /src/nvim/testdir/test_eval_func.vim | |
| parent | d671dae58cbf796c864ef23ef0d121679cf612c4 (diff) | |
| parent | 41f6a10a9b83542fd7d1ea898799c1979db38f2c (diff) | |
| download | rneovim-4c960c3d78d9aaae77c469c91c88280c9f5efbf2.tar.gz rneovim-4c960c3d78d9aaae77c469c91c88280c9f5efbf2.tar.bz2 rneovim-4c960c3d78d9aaae77c469c91c88280c9f5efbf2.zip | |
Merge #3077 'test_eval'
Diffstat (limited to 'src/nvim/testdir/test_eval_func.vim')
| -rw-r--r-- | src/nvim/testdir/test_eval_func.vim | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/nvim/testdir/test_eval_func.vim b/src/nvim/testdir/test_eval_func.vim deleted file mode 100644 index 48d01df27d..0000000000 --- a/src/nvim/testdir/test_eval_func.vim +++ /dev/null @@ -1,12 +0,0 @@ -" 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') |