Lines Matching refs:script
3 " Commands to track the execution path of a script
10 " MakeScript() - Make a script file from a function. {{{2
12 " Create a script that consists of the body of the function a:funcname.
16 " to be made for a ":return" from a function call or a ":finish" in a script
19 let script = tempname()
20 execute "redir! >" . script
23 execute "edit" script
42 return script
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
52 " Make a script from the function passed as argument.
55 " Source and delete the script.