vim-airline/autoload/airline/parts.vim

60 lines
1.4 KiB
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
2013-08-30 21:51:10 +00:00
let s:parts = {}
2013-08-31 16:07:56 +00:00
" PUBLIC API {{{
2013-08-30 21:51:10 +00:00
function! airline#parts#define(key, config)
let s:parts[a:key] = get(s:parts, a:key, {})
call extend(s:parts[a:key], a:config)
endfunction
function! airline#parts#define_function(key, name)
call airline#parts#define(a:key, { 'function': a:name })
endfunction
function! airline#parts#define_text(key, text)
call airline#parts#define(a:key, { 'text': a:text })
endfunction
function! airline#parts#define_raw(key, raw)
call airline#parts#define(a:key, { 'raw': a:raw })
endfunction
function! airline#parts#define_minwidth(key, width)
call airline#parts#define(a:key, { 'minwidth': a:width })
endfunction
function! airline#parts#define_empty(keys)
for key in a:keys
call airline#parts#define_raw(key, '')
endfor
endfunction
2013-08-30 21:51:10 +00:00
function! airline#parts#get(key)
return get(s:parts, a:key, {})
endfunction
2013-08-31 16:07:56 +00:00
" }}}
function! airline#parts#mode()
return get(w:, 'airline_current_mode', '')
endfunction
2013-08-27 18:08:50 +00:00
function! airline#parts#paste()
return g:airline_detect_paste && &paste ? g:airline_symbols.paste : ''
2013-08-27 03:07:14 +00:00
endfunction
2013-08-27 18:08:50 +00:00
function! airline#parts#iminsert()
2013-08-27 03:07:14 +00:00
if g:airline_detect_iminsert && &iminsert && exists('b:keymap_name')
return toupper(b:keymap_name)
2013-08-27 03:07:14 +00:00
endif
return ''
2013-08-27 02:55:11 +00:00
endfunction
2013-08-27 18:08:50 +00:00
function! airline#parts#readonly()
2013-08-27 03:34:02 +00:00
return &readonly ? g:airline_symbols.readonly : ''
endfunction