clean up how symbols are defined.

This commit is contained in:
Bailey Ling
2013-08-26 23:34:02 -04:00
parent fe24924ad3
commit 6dd4cd5423
7 changed files with 34 additions and 52 deletions
+2 -3
View File
@@ -3,8 +3,7 @@
let s:empty_message = get(g:, 'airline#extensions#branch#empty_message',
\ get(g:, 'airline_branch_empty_message', ''))
let s:symbol = get(g:, 'airline#extensions#branch#symbol',
\ get(g:, 'airline_branch_prefix', get(g:, 'airline_powerline_fonts', 0) ? ' ' : ''))
let s:symbol = g:airline_symbols.branch
let s:has_fugitive = exists('*fugitive#head')
let s:has_fugitive_detect = exists('*fugitive#detect')
@@ -28,7 +27,7 @@ function! airline#extensions#branch#get_head()
endif
endif
return empty(head) ? s:empty_message : s:symbol.head
return empty(head) ? s:empty_message : s:symbol.' '.head
endfunction
function! airline#extensions#branch#init(ext)