2013-08-20 08:18:01 +00:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
2013-08-20 12:11:38 +00:00
|
|
|
let s:symbol = get(g:, 'airline#extensions#readonly#symbol',
|
2013-08-22 14:14:17 +00:00
|
|
|
\ get(g:, 'airline_readonly_symbol', get(g:, 'airline_powerline_fonts', 0) ? '' : 'RO'))
|
2013-08-20 12:11:38 +00:00
|
|
|
|
2013-08-20 08:18:01 +00:00
|
|
|
function! airline#extensions#readonly#get_mark()
|
2013-08-20 12:11:38 +00:00
|
|
|
return &ro ? s:symbol : ''
|
2013-08-20 08:18:01 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#readonly#init()
|
2013-08-24 02:49:24 +00:00
|
|
|
let g:airline_section_gutter = ' %#airline_file#%{airline#extensions#readonly#get_mark()} '
|
2013-08-20 12:11:38 +00:00
|
|
|
\ .g:airline_section_gutter
|
2013-08-20 08:18:01 +00:00
|
|
|
endfunction
|
|
|
|
|