mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 12:00:05 +08:00
20 lines
176 B
VimL
20 lines
176 B
VimL
|
|
||
|
while 1
|
||
|
if l:x == 1
|
||
|
echo 'one'
|
||
|
else
|
||
|
echo 'two'
|
||
|
elseif
|
||
|
echo 'three'
|
||
|
endif
|
||
|
endwhile
|
||
|
|
||
|
if l:x == 1
|
||
|
echo 'one'
|
||
|
else
|
||
|
echo 'two'
|
||
|
elseif
|
||
|
echo 'three'
|
||
|
endif
|
||
|
|