fix adding space padding to section caused by PR1157

fixes #1158
This commit is contained in:
Christian Brabandt 2016-05-12 21:34:29 +02:00
parent 811e51575c
commit a4840f1585
1 changed files with 2 additions and 4 deletions

View File

@ -8,10 +8,8 @@ function! s:prototype.split(...)
endfunction
function! s:prototype.add_section_spaced(group, contents)
if a:contents
let a:contents = (g:airline_symbols.space).a:contents.(g:airline_symbols.space)
endif
call self.add_section(a:group, a:contents)
let spc = empty(a:contents) ? '' : g:airline_symbols.space
call self.add_section(a:group, spc.a:contents.spc)
endfunction
function! s:prototype.add_section(group, contents)