deprecate airline_readonly_symbol. move into gutter by default, so it does not conflict with bufferline logic.

This commit is contained in:
Bailey Ling
2013-08-20 08:11:38 -04:00
parent fad2c084e7
commit e2a758e309
3 changed files with 8 additions and 5 deletions

View File

@@ -1,11 +1,15 @@
" MIT License. Copyright (c) 2013 Bailey Ling.
" vim: et ts=2 sts=2 sw=2
let s:symbol = get(g:, 'airline#extensions#readonly#symbol',
\ get(g:, 'airline_readonly_symbol', exists('g:airline_powerline_fonts') ? '' : 'RO'))
function! airline#extensions#readonly#get_mark()
return &ro ? g:airline_readonly_symbol : ''
return &ro ? s:symbol : ''
endfunction
function! airline#extensions#readonly#init()
let g:airline_section_c .= '%{airline#extensions#readonly#get_mark()}'
let g:airline_section_gutter = '%{airline#extensions#readonly#get_mark()}'
\ .g:airline_section_gutter
endfunction