replace all instance of space with the no-break space. resolves #256.

This commit is contained in:
bling
2013-09-22 11:29:27 -04:00
parent b22190400d
commit bfe35ed76c
9 changed files with 21 additions and 12 deletions

View File

@@ -8,7 +8,7 @@ endif
function! airline#extensions#syntastic#get_warnings()
let errors = SyntasticStatuslineFlag()
if strlen(errors) > 0
return errors.' '
return errors.(g:airline_symbols.space)
endif
return ''
endfunction