Merged from the latest developing branch.
[MacVim.git] / src / testdir / test56.in
blob311a6004ca78a9539bd14f0c460b3c415cf74344
1 Test for script-local function.     vim: set ft=vim :
3 STARTTEST
4 :so small.vim
5 :"
6 :set nocp viminfo+=nviminfo
7 :/^start:/+1,/^end:/-1w! Xtest.vim
8 :source Xtest.vim
9 _x
10 :$-1,$wq! test.out
11 ENDTEST
13 start:
14 fun <SID>DoLast()
15   call append(line('$'), "last line")
16 endfun
17 fun s:DoNothing()
18   call append(line('$'), "nothing line")
19 endfun
20 nnoremap <buffer> _x    :call <SID>DoNothing()<bar>call <SID>DoLast()<bar>delfunc <SID>DoNothing<bar>delfunc <SID>DoLast<cr>
21 end: