2013-08-27 02:55:11 +00:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
|
|
|
function! airline#fragments#get_paste()
|
2013-08-27 03:34:02 +00:00
|
|
|
return g:airline_detect_paste && &paste ? ' '.g:airline_symbols.paste : ''
|
2013-08-27 03:07:14 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#fragments#get_iminsert()
|
|
|
|
if g:airline_detect_iminsert && &iminsert && exists('b:keymap_name')
|
|
|
|
return ' '.g:airline_left_alt_sep.' '.toupper(b:keymap_name)
|
|
|
|
endif
|
|
|
|
return ''
|
2013-08-27 02:55:11 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-08-27 03:34:02 +00:00
|
|
|
function! airline#fragments#get_readonly()
|
|
|
|
return &readonly ? g:airline_symbols.readonly : ''
|
|
|
|
endfunction
|
|
|
|
|