vim-airline/autoload/airline/fragments.vim

19 lines
515 B
VimL
Raw Normal View History

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#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#iminsert()
2013-08-27 03:07:14 +00:00
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
function! airline#fragments#readonly()
2013-08-27 03:34:02 +00:00
return &readonly ? g:airline_symbols.readonly : ''
endfunction