2013-08-17 17:35:06 +00:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-16 01:47:54 +00:00
|
|
|
|
2013-08-28 23:29:35 +00:00
|
|
|
function! s:get_val(part)
|
2013-08-29 00:15:07 +00:00
|
|
|
if has_key(g:airline_parts, a:part)
|
|
|
|
let val = g:airline_parts[a:part]
|
|
|
|
if match(val, '%\| ') > -1
|
|
|
|
return val
|
|
|
|
else
|
|
|
|
return '%{'.val.'()}'
|
|
|
|
endif
|
2013-08-28 23:29:35 +00:00
|
|
|
endif
|
2013-08-29 00:15:07 +00:00
|
|
|
return a:part
|
2013-08-28 23:29:35 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#util#define_section(key, parts)
|
|
|
|
if !exists('g:airline_section_{a:key}') && len(a:parts) > 0
|
|
|
|
let g:airline_section_{a:key} = s:get_val(a:parts[0])
|
|
|
|
for i in range(1, len(a:parts) - 1)
|
|
|
|
let g:airline_section_{a:key} .= s:get_val(a:parts[i])
|
|
|
|
endfor
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2013-08-18 04:50:48 +00:00
|
|
|
if v:version >= 704
|
2013-08-17 21:39:06 +00:00
|
|
|
function! airline#util#getwinvar(winnr, key, def)
|
|
|
|
return getwinvar(a:winnr, a:key, a:def)
|
|
|
|
endfunction
|
|
|
|
else
|
|
|
|
function! airline#util#getwinvar(winnr, key, def)
|
|
|
|
let winvals = getwinvar(a:winnr, '')
|
2013-08-18 04:50:48 +00:00
|
|
|
return get(winvals, a:key, a:def)
|
2013-08-17 21:39:06 +00:00
|
|
|
endfunction
|
|
|
|
endif
|
2013-08-16 01:50:24 +00:00
|
|
|
|
2013-08-17 21:50:41 +00:00
|
|
|
if v:version >= 704
|
2013-08-22 03:12:07 +00:00
|
|
|
function! airline#util#exec_funcrefs(list, ...)
|
2013-08-17 21:50:41 +00:00
|
|
|
for Fn in a:list
|
2013-08-22 20:22:54 +00:00
|
|
|
let code = call(Fn, a:000)
|
2013-08-22 03:12:07 +00:00
|
|
|
if code != 0
|
|
|
|
return code
|
2013-08-16 01:47:54 +00:00
|
|
|
endif
|
2013-08-17 21:50:41 +00:00
|
|
|
endfor
|
2013-08-22 03:12:07 +00:00
|
|
|
return 0
|
2013-08-17 21:50:41 +00:00
|
|
|
endfunction
|
|
|
|
else
|
2013-08-22 03:12:07 +00:00
|
|
|
function! airline#util#exec_funcrefs(list, ...)
|
2013-08-17 21:50:41 +00:00
|
|
|
" for 7.2; we cannot iterate the list, hence why we use range()
|
|
|
|
" for 7.3-[97, 328]; we cannot reuse the variable, hence the {}
|
|
|
|
for i in range(0, len(a:list) - 1)
|
|
|
|
let Fn{i} = a:list[i]
|
2013-08-22 20:22:54 +00:00
|
|
|
let code = call(Fn{i}, a:000)
|
2013-08-22 03:12:07 +00:00
|
|
|
if code != 0
|
|
|
|
return code
|
2013-08-17 21:50:41 +00:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
return 0
|
|
|
|
endfunction
|
|
|
|
endif
|
2013-08-17 17:35:06 +00:00
|
|
|
|