mirror of
https://github.com/neovim/neovim.git
synced 2026-01-24 06:05:37 +10:00
Move files from src/ to src/nvim/. - src/nvim/ becomes the new root dir for nvim executable sources. - src/libnvim/ is planned to become root dir of the neovim library.
13 lines
324 B
VimL
13 lines
324 B
VimL
" Vim script used in test_eval.in. Needed for script-local function.
|
|
|
|
func! s:Testje()
|
|
return "foo"
|
|
endfunc
|
|
|
|
let Bar = function('s:Testje')
|
|
|
|
$put ='s:Testje exists: ' . exists('s:Testje')
|
|
$put ='func s:Testje exists: ' . exists('*s:Testje')
|
|
$put ='Bar exists: ' . exists('Bar')
|
|
$put ='func Bar exists: ' . exists('*Bar')
|