blob: 67d66af46d8f16166ff80920b905aed9d5e14ac1 [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
20nnoremap <buffer> _x :call <SID>DoNothing()<bar>call <SID>DoLast()<cr>
21end: