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-29 07:29:35 +08:00
|
|
|
function! airline#parts#append(name)
|
|
|
|
let val = function(a:name)()
|
|
|
|
return empty(val) ? '' : ' '.g:airline_left_alt_sep.' '.val
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#parts#prepend(name)
|
|
|
|
let val = function(a:name)()
|
2013-08-29 08:57:58 +08:00
|
|
|
return empty(val) ? '' : val.' '.g:airline_right_alt_sep.' '
|
2013-08-29 07:29:35 +08:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#parts#empty()
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#parts#mode()
|
|
|
|
return get(w:, 'airline_current_mode', '')
|
|
|
|
endfunction
|
|
|
|
|
2013-08-28 02:08:50 +08:00
|
|
|
function! airline#parts#paste()
|
2013-08-29 07:29:35 +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')
|
2013-08-29 07:29:35 +08:00
|
|
|
return toupper(b:keymap_name)
|
2013-08-27 11:07:14 +08:00
|
|
|
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
|
|
|
|
|