mirror of
https://github.com/chenasraf/vim-matchup.git
synced 2026-05-18 01:38:57 +00: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
|
|
|