mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 22:10:05 +08:00
8 lines
109 B
VimL
8 lines
109 B
VimL
|
function! Foo()
|
||
|
if l:something
|
||
|
let foo = 1
|
||
|
endif
|
||
|
echom foo . 'bar'
|
||
|
endfunction
|
||
|
" vim: ts=4 sw=4 et
|