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
+5 -6
View File
@@ -1,13 +1,8 @@
" MIT License. Copyright (c) 2013 Bailey Ling.
" vim: et ts=2 sts=2 sw=2
let g:airline#fragments#symbols = get(g:, 'airline#fragments#symbols', {})
call extend(g:airline#fragments#symbols, {
\ 'paste': get(g:, 'airline_paste_symbol', g:airline_left_alt_sep.' PASTE')
\ }, 'keep')
function! airline#fragments#get_paste()
return g:airline_detect_paste && &paste ? ' '.g:airline#fragments#symbols.paste : ''
return g:airline_detect_paste && &paste ? ' '.g:airline_symbols.paste : ''
endfunction
function! airline#fragments#get_iminsert()
@@ -17,3 +12,7 @@ function! airline#fragments#get_iminsert()
return ''
endfunction
function! airline#fragments#get_readonly()
return &readonly ? g:airline_symbols.readonly : ''
endfunction