blob: 311a6004ca78a9539bd14f0c460b3c415cf74344 [file] [log] [blame]
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00001Test for script-local function. vim: set ft=vim :
2
3STARTTEST
4:so small.vim
5:"
Bram Moolenaar6abf17b2006-09-05 11:36:02 +00006:set nocp viminfo+=nviminfo
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00007:/^start:/+1,/^end:/-1w! Xtest.vim
8:source Xtest.vim
9_x
10:$-1,$wq! test.out
11ENDTEST
12
13start:
14fun <SID>DoLast()
15 call append(line('$'), "last line")
16endfun
17fun s:DoNothing()
18 call append(line('$'), "nothing line")
19endfun
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +000020nnoremap <buffer> _x :call <SID>DoNothing()<bar>call <SID>DoLast()<bar>delfunc <SID>DoNothing<bar>delfunc <SID>DoLast<cr>
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000021end: