2018-01-05 09:37:59 +00:00
|
|
|
" MIT License. Copyright (c) 2013-2018 Bailey Ling et al.
|
2013-08-17 17:35:06 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-16 01:47:54 +00:00
|
|
|
|
2017-06-27 12:39:11 +00:00
|
|
|
" TODO: Try to cache winwidth(0) function
|
|
|
|
" e.g. store winwidth per window and access that, only update it, if the size
|
|
|
|
" actually changed.
|
2016-09-24 00:16:30 +00:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
2013-08-31 21:42:09 +00:00
|
|
|
call airline#init#bootstrap()
|
2013-09-19 02:23:50 +00:00
|
|
|
let s:spc = g:airline_symbols.space
|
2013-08-31 16:57:02 +00:00
|
|
|
|
2017-05-02 19:22:47 +00:00
|
|
|
function! airline#util#shorten(text, winwidth, minwidth, ...)
|
2016-07-02 07:49:05 +00:00
|
|
|
if winwidth(0) < a:winwidth && len(split(a:text, '\zs')) > a:minwidth
|
2017-05-02 19:22:47 +00:00
|
|
|
if get(a:000, 0, 0)
|
|
|
|
" shorten from tail
|
|
|
|
return '…'.matchstr(a:text, '.\{'.a:minwidth.'}$')
|
|
|
|
else
|
|
|
|
" shorten from beginning of string
|
|
|
|
return matchstr(a:text, '^.\{'.a:minwidth.'}').'…'
|
|
|
|
endif
|
2016-07-02 07:49:05 +00:00
|
|
|
else
|
|
|
|
return a:text
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2013-08-31 16:33:58 +00:00
|
|
|
function! airline#util#wrap(text, minwidth)
|
|
|
|
if a:minwidth > 0 && winwidth(0) < a:minwidth
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
return a:text
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#util#append(text, minwidth)
|
|
|
|
if a:minwidth > 0 && winwidth(0) < a:minwidth
|
|
|
|
return ''
|
|
|
|
endif
|
2013-09-30 14:37:02 +00:00
|
|
|
let prefix = s:spc == "\ua0" ? s:spc : s:spc.s:spc
|
|
|
|
return empty(a:text) ? '' : prefix.g:airline_left_alt_sep.s:spc.a:text
|
2013-08-28 23:29:35 +00:00
|
|
|
endfunction
|
|
|
|
|
2016-04-21 07:11:22 +00:00
|
|
|
function! airline#util#warning(msg)
|
|
|
|
echohl WarningMsg
|
|
|
|
echomsg "airline: ".a:msg
|
|
|
|
echohl Normal
|
|
|
|
endfunction
|
|
|
|
|
2013-08-31 16:33:58 +00:00
|
|
|
function! airline#util#prepend(text, minwidth)
|
|
|
|
if a:minwidth > 0 && winwidth(0) < a:minwidth
|
|
|
|
return ''
|
|
|
|
endif
|
2013-09-19 02:23:50 +00:00
|
|
|
return empty(a:text) ? '' : a:text.s:spc.g:airline_right_alt_sep.s:spc
|
2013-08-29 00:57:58 +00:00
|
|
|
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
|
2018-03-19 14:58:50 +00:00
|
|
|
|
|
|
|
" Compatibility wrapper for strchars, in case this vim version does not
|
|
|
|
" have it natively
|
|
|
|
function! airline#util#strchars(str)
|
|
|
|
if exists('*strchars')
|
|
|
|
return strchars(a:str)
|
|
|
|
else
|
|
|
|
return strlen(substitute(a:str, '.', 'a', 'g'))
|
|
|
|
endif
|
|
|
|
endfunction
|
2018-05-11 20:22:46 +00:00
|
|
|
|
|
|
|
function! airline#util#ignore_buf(name)
|
|
|
|
let pat = '\c\v'. get(g:, 'airline#ignore_bufadd_pat', '').
|
|
|
|
\ get(g:, 'airline#extensions#tabline#ignore_bufadd_pat',
|
|
|
|
\ 'gundo|undotree|vimfiler|tagbar|nerd_tree|startify')
|
|
|
|
return match(a:name, pat) > -1
|
|
|
|
endfunction
|
2018-06-04 15:31:13 +00:00
|
|
|
|
|
|
|
function! airline#util#has_fugitive()
|
2018-06-04 15:42:33 +00:00
|
|
|
return exists('*fugitive#head') || exists('*FugitiveStatusline')
|
2018-06-04 15:31:13 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#util#has_lawrencium()
|
|
|
|
return exists('*lawrencium#statusline')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#util#has_vcscommand()
|
|
|
|
return get(g:, 'airline#extensions#branch#use_vcscommand', 0) && exists('*VCSCommandGetStatusLine')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#util#has_custom_scm()
|
|
|
|
return !empty(get(g:, 'airline#extensions#branch#custom_head', ''))
|
|
|
|
endfunction
|