例子:
function! MkStatusLine()
let &stl=''
let &stl.='%{abcd()}'
endfunction
function abcd()
if this
return ' myvalue'
elseif this
return ' '
endif
endfunction
如何退回空间?
return ' ' 被视为 return ''
return 'myvalue' 被视为 return 'myvalue'