mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-24 08:35:08 +08:00
fd68997398
this allows users to define section variables in their vimrc.
72 lines
1.9 KiB
VimL
72 lines
1.9 KiB
VimL
" MIT License. Copyright (c) 2013 Bailey Ling.
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
let s:parts = {}
|
|
|
|
" PUBLIC API {{{
|
|
|
|
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
|
|
|
|
function! airline#parts#get(key)
|
|
return get(s:parts, a:key, {})
|
|
endfunction
|
|
|
|
" }}}
|
|
|
|
function! airline#parts#mode()
|
|
return get(w:, 'airline_current_mode', '')
|
|
endfunction
|
|
|
|
function! airline#parts#paste()
|
|
return g:airline_detect_paste && &paste ? g:airline_symbols.paste : ''
|
|
endfunction
|
|
|
|
function! airline#parts#iminsert()
|
|
if g:airline_detect_iminsert && &iminsert && exists('b:keymap_name')
|
|
return toupper(b:keymap_name)
|
|
endif
|
|
return ''
|
|
endfunction
|
|
|
|
function! airline#parts#readonly()
|
|
return &readonly ? g:airline_symbols.readonly : ''
|
|
endfunction
|
|
|
|
call airline#parts#define_function('mode', 'airline#parts#mode')
|
|
call airline#parts#define_function('iminsert', 'airline#parts#iminsert')
|
|
call airline#parts#define_function('paste', 'airline#parts#paste')
|
|
call airline#parts#define('readonly', {
|
|
\ 'function': 'airline#parts#readonly',
|
|
\ 'highlight': 'airline_file',
|
|
\ })
|
|
call airline#parts#define_raw('file', '%f%m')
|
|
call airline#parts#define_raw('ffenc', '%{printf("%s%s",&fenc,strlen(&ff)>0?"[".&ff."]":"")}')
|
|
|
|
call airline#parts#define_empty(['hunks', 'branch', 'tagbar', 'syntastic'])
|
|
|