1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 16:10:05 +08:00
SpaceVim/bundle/vim-matchup/test/issues/16/any.vim

21 lines
230 B
VimL
Raw Normal View History

2020-06-13 14:06:35 +08:00
function! s:test()
if l:x == 1
if l:y == "hello andy"
echom "hello andy" " CURSOR
endif
call one()
else
call two()
elseif
call three()
endif
let l:str = "hello"
return l:str
endfunction