vim-airline/autoload/airline/parts.vim

19 lines
503 B
VimL
Raw Normal View History

2013-08-27 10:55:11 +08:00
" MIT License. Copyright (c) 2013 Bailey Ling.
" vim: et ts=2 sts=2 sw=2
2013-08-28 02:08:50 +08:00
function! airline#parts#paste()
2013-08-27 11:34:02 +08:00
return g:airline_detect_paste && &paste ? ' '.g:airline_symbols.paste : ''
2013-08-27 11:07:14 +08:00
endfunction
2013-08-28 02:08:50 +08:00
function! airline#parts#iminsert()
2013-08-27 11:07:14 +08: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 10:55:11 +08:00
endfunction
2013-08-28 02:08:50 +08:00
function! airline#parts#readonly()
2013-08-27 11:34:02 +08:00
return &readonly ? g:airline_symbols.readonly : ''
endfunction