mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 16:50:05 +08:00
14 lines
120 B
VimL
14 lines
120 B
VimL
|
function! s:test()
|
||
|
|
||
|
let l:str = "hello"
|
||
|
|
||
|
return l:str
|
||
|
|
||
|
endfunction
|
||
|
|
||
|
if condition
|
||
|
█call one()
|
||
|
call two()
|
||
|
endif
|
||
|
|