vim-airline/autoload/airline/fragments.vim

20 lines
648 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
let g:airline#fragments#symbols = get(g:, 'airline#fragments#symbols', {})
call extend(g:airline#fragments#symbols, {
\ 'paste': get(g:, 'airline_paste_symbol', g:airline_left_alt_sep.' PASTE')
\ }, 'keep')
function! airline#fragments#get_paste()
2013-08-27 03:07:14 +00:00
return g:airline_detect_paste && &paste ? ' '.g:airline#fragments#symbols.paste : ''
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