mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 13:40:06 +08:00
16 lines
194 B
VimL
16 lines
194 B
VimL
|
|
||
|
function! Fcn()
|
||
|
" cursor 1
|
||
|
if 0
|
||
|
" cursor 2
|
||
|
return
|
||
|
" cursor 3
|
||
|
else
|
||
|
" cursor 4
|
||
|
return
|
||
|
" cursor 5
|
||
|
endif
|
||
|
" cursor 6
|
||
|
endfunction
|
||
|
|