aboutsummaryrefslogtreecommitdiff
path: root/src/testdir/test_eval.in
blob: 3ab85301cfe69e8aef0cd6409510a169fc30a318 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
STARTTEST

:" function name not starting with a capital
:try
:  func! g:test()
:    echo "test"
:  endfunc
:catch
:  $put =v:exception
:endtry

:" function name folowed by #
:try
:  func! test2() "#
:    echo "test2"
:  endfunc
:catch
:  $put =v:exception
:endtry

:" function name includes a colon
:try
:  func! b:test()
:    echo "test"
:  endfunc
:catch
:  $put =v:exception
:endtry

:" function name starting with/without "g:", buffer-local funcref.
:function! g:Foo(n)
:  $put ='called Foo(' . a:n . ')'
:endfunction
:let b:my_func = function('Foo')
:call b:my_func(1)
:echo g:Foo(2)
:echo Foo(3)

:$-5,$w! test.out
:q!

ENDTEST