2016-01-14 21:38:38 -05:00
|
|
|
" MIT License. Copyright (c) 2013-2016 Bailey Ling.
|
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 14:39:11 +02: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 08:16:30 +08:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
2013-08-31 17:42:09 -04:00
|
|
|
call airline#init#bootstrap()
|
2013-09-18 22:23:50 -04:00
|
|
|
let s:spc = g:airline_symbols.space
|
2013-08-31 12:57:02 -04:00
|
|
|
|
2017-05-02 21:22:47 +02:00
|
|
|
function! airline#util#shorten(text, winwidth, minwidth, ...)
|
2016-07-02 09:49:05 +02:00
|
|
|
if winwidth(0) < a:winwidth && len(split(a:text, '\zs')) > a:minwidth
|
2017-05-02 21:22:47 +02: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 09:49:05 +02:00
|
|
|
else
|
|
|
|
return a:text
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2013-08-31 12:33:58 -04: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 09:11:22 +02:00
|
|
|
function! airline#util#warning(msg)
|
|
|
|
echohl WarningMsg
|
|
|
|
echomsg "airline: ".a:msg
|
|
|
|
echohl Normal
|
|
|
|
endfunction
|
|
|
|
|
2013-08-31 12:33:58 -04:00
|
|
|
function! airline#util#prepend(text, minwidth)
|
|
|
|
if a:minwidth > 0 && winwidth(0) < a:minwidth
|
|
|
|
return ''
|
|
|
|
endif
|
2013-09-18 22:23:50 -04: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 17:39:06 -04: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 17:39:06 -04:00
|
|
|
endfunction
|
|
|
|
endif
|
2013-08-16 01:50:24 +00:00
|
|
|
|
2013-08-17 17:50:41 -04:00
|
|
|
if v:version >= 704
|
2013-08-22 03:12:07 +00:00
|
|
|
function! airline#util#exec_funcrefs(list, ...)
|
2013-08-17 17:50:41 -04: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 17:50:41 -04:00
|
|
|
endfor
|
2013-08-22 03:12:07 +00:00
|
|
|
return 0
|
2013-08-17 17:50:41 -04:00
|
|
|
endfunction
|
|
|
|
else
|
2013-08-22 03:12:07 +00:00
|
|
|
function! airline#util#exec_funcrefs(list, ...)
|
2013-08-17 17:50:41 -04: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 17:50:41 -04:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
return 0
|
|
|
|
endfunction
|
|
|
|
endif
|
2016-10-30 12:55:11 +01:00
|
|
|
|
|
|
|
" Define a wrapper over system() that uses nvim's async job control if
|
|
|
|
" available. This way we avoid overwriting v:shell_error, which might
|
|
|
|
" potentially disrupt other plugins.
|
|
|
|
if has('nvim')
|
2016-12-13 16:44:39 +09:00
|
|
|
function! s:system_job_handler(job_id, data, event) dict
|
2016-10-30 12:55:11 +01:00
|
|
|
if a:event == 'stdout'
|
|
|
|
let self.buf .= join(a:data)
|
2017-08-22 15:29:39 +02:00
|
|
|
else " on_exit handler
|
|
|
|
if self.buf =~? ('^' . self.cfg['untracked_mark'])
|
|
|
|
let self.cfg.untracked[self.file] = get(g:, 'airline#extensions#branch#notexists', g:airline_symbols.notexists)
|
|
|
|
else
|
|
|
|
let self.cfg.untracked[self.file] = ''
|
|
|
|
endif
|
2016-10-30 12:55:11 +01:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2017-08-22 15:29:39 +02:00
|
|
|
function! airline#util#system(cfg, file)
|
2016-10-30 12:55:11 +01:00
|
|
|
let l:config = {
|
|
|
|
\ 'buf': '',
|
2017-08-22 15:29:39 +02:00
|
|
|
\ 'cfg': a:cfg,
|
|
|
|
\ 'file': a:file,
|
|
|
|
\ 'cwd': fnamemodify(a:file, ':p:h'),
|
2016-10-30 12:55:11 +01:00
|
|
|
\ 'on_stdout': function('s:system_job_handler'),
|
2017-08-22 15:29:39 +02:00
|
|
|
\ 'on_exit': function('s:system_job_handler')
|
2016-10-30 12:55:11 +01:00
|
|
|
\ }
|
2017-08-22 15:29:39 +02:00
|
|
|
let cmd = a:cfg.cmd . shellescape(a:file)
|
|
|
|
let l:id = jobstart(cmd, l:config)
|
2016-10-30 12:55:11 +01:00
|
|
|
if l:id < 1
|
2017-08-22 15:29:39 +02:00
|
|
|
return system(cmd)
|
|
|
|
else
|
|
|
|
return ''
|
2016-10-30 12:55:11 +01:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
else
|
|
|
|
function! airline#util#system(cmd)
|
|
|
|
return system(a:cmd)
|
|
|
|
endfunction
|
|
|
|
endif
|