Merge pull request #1161 from chrisbra/1157
fix adding space padding to section caused by PR1157
This commit is contained in:
commit
4ca34804b2
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user