2016-01-15 02:38:38 +00:00
|
|
|
" MIT License. Copyright (c) 2013-2016 Bailey Ling.
|
2013-08-27 02:55:11 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
2016-09-24 00:16:30 +00:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
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, {})
|
2013-09-26 02:13:57 +00:00
|
|
|
if exists('g:airline#init#bootstrapping')
|
2013-09-25 18:48:18 +00:00
|
|
|
call extend(s:parts[a:key], a:config, 'keep')
|
|
|
|
else
|
|
|
|
call extend(s:parts[a:key], a:config, 'force')
|
|
|
|
endif
|
2013-08-30 21:51:10 +00:00
|
|
|
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 })
|
2013-08-28 23:29:35 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-08-31 16:33:58 +00:00
|
|
|
function! airline#parts#define_minwidth(key, width)
|
|
|
|
call airline#parts#define(a:key, { 'minwidth': a:width })
|
|
|
|
endfunction
|
|
|
|
|
2013-09-08 23:06:57 +00:00
|
|
|
function! airline#parts#define_condition(key, predicate)
|
|
|
|
call airline#parts#define(a:key, { 'condition': a:predicate })
|
|
|
|
endfunction
|
|
|
|
|
2013-09-16 02:52:42 +00:00
|
|
|
function! airline#parts#define_accent(key, accent)
|
|
|
|
call airline#parts#define(a:key, { 'accent': a:accent })
|
|
|
|
endfunction
|
|
|
|
|
2013-08-31 03:35:23 +00:00
|
|
|
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, {})
|
2013-08-28 23:29:35 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-08-31 16:07:56 +00:00
|
|
|
" }}}
|
2013-08-28 23:29:35 +00:00
|
|
|
|
2013-08-31 16:57:02 +00:00
|
|
|
function! airline#parts#mode()
|
2016-10-20 20:57:26 +00:00
|
|
|
return airline#util#shorten(get(w:, 'airline_current_mode', ''), 79, 1)
|
2013-08-31 16:57:02 +00:00
|
|
|
endfunction
|
|
|
|
|
2015-06-02 18:37:08 +00:00
|
|
|
function! airline#parts#crypt()
|
2015-06-09 16:19:16 +00:00
|
|
|
return g:airline_detect_crypt && exists("+key") && !empty(&key) ? g:airline_symbols.crypt : ''
|
2015-06-02 18:37:08 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-08-27 18:08:50 +00:00
|
|
|
function! airline#parts#paste()
|
2013-08-28 23:29:35 +00:00
|
|
|
return g:airline_detect_paste && &paste ? g:airline_symbols.paste : ''
|
2013-08-27 03:07:14 +00:00
|
|
|
endfunction
|
|
|
|
|
2016-03-22 06:52:04 +00:00
|
|
|
function! airline#parts#spell()
|
|
|
|
return g:airline_detect_spell && &spell ? g:airline_symbols.spell : ''
|
|
|
|
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')
|
2013-08-28 23:29:35 +00:00
|
|
|
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()
|
2016-02-25 01:57:49 +00:00
|
|
|
if &readonly && &modifiable && !filereadable(bufname('%'))
|
2016-02-24 19:40:29 +00:00
|
|
|
return '[noperm]'
|
|
|
|
else
|
|
|
|
return &readonly ? g:airline_symbols.readonly : ''
|
|
|
|
endif
|
2013-08-27 03:34:02 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-09-01 16:07:46 +00:00
|
|
|
function! airline#parts#filetype()
|
2017-05-02 20:06:36 +00:00
|
|
|
return winwidth(0) < 90 && strlen(&filetype) > 3 ? matchstr(&filetype, '...'). (&encoding is? 'utf-8' ? '…' : '>') : &filetype
|
2013-09-01 16:07:46 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-09-07 18:14:41 +00:00
|
|
|
function! airline#parts#ffenc()
|
2016-12-13 20:44:57 +00:00
|
|
|
let expected = get(g:, 'airline#parts#ffenc#skip_expected_string', '')
|
|
|
|
let bomb = &l:bomb ? '[BOM]' : ''
|
|
|
|
let ff = strlen(&ff) ? '['.&ff.']' : ''
|
|
|
|
if expected is# &fenc.bomb.ff
|
|
|
|
return ''
|
|
|
|
else
|
|
|
|
return &fenc.bomb.ff
|
|
|
|
endif
|
2013-09-07 18:14:41 +00:00
|
|
|
endfunction
|