Lines Matching refs:function
10 " MakeScript() - Make a script file from a function. {{{2
12 " Create a script that consists of the body of the function a:funcname.
15 " in the variable argument list. This function is useful if similar tests are
16 " to be made for a ":return" from a function call or a ":finish" in a script
21 execute "function" a:funcname
24 " Delete the "function" and the "endfunction" lines. Do not include the
25 " word "function" in the pattern since it might be translated if LANG is
45 " ExecAsScript - Source a temporary script made from a function. {{{2
47 " Make a temporary script file from the function a:funcname, ":source" it, and
51 function! ExecAsScript(funcname)
52 " Make a script from the function passed as argument.
61 function! DeleteTheScript()