2019-03-25 07:27:10 -04:00
|
|
|
" MIT License. Copyright (c) 2013-2019 Bailey Ling et al.
|
2013-08-26 20:56:54 -04:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
2016-09-23 20:16:30 -04:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
2016-02-02 14:32:30 -05:00
|
|
|
let s:section_use_groups = get(g:, 'airline#extensions#default#section_use_groupitems', 1)
|
2013-08-26 21:12:00 -04:00
|
|
|
let s:section_truncate_width = get(g:, 'airline#extensions#default#section_truncate_width', {
|
2013-09-18 21:33:17 -04:00
|
|
|
\ 'b': 79,
|
2013-08-27 07:55:28 -04:00
|
|
|
\ 'x': 60,
|
|
|
|
\ 'y': 88,
|
|
|
|
\ 'z': 45,
|
2016-01-30 10:47:40 -05:00
|
|
|
\ 'warning': 80,
|
|
|
|
\ 'error': 80,
|
2013-08-26 21:12:00 -04:00
|
|
|
\ })
|
2013-08-27 19:57:18 -04:00
|
|
|
let s:layout = get(g:, 'airline#extensions#default#layout', [
|
|
|
|
\ [ 'a', 'b', 'c' ],
|
2016-01-30 10:47:40 -05:00
|
|
|
\ [ 'x', 'y', 'z', 'warning', 'error' ]
|
2013-08-27 19:57:18 -04:00
|
|
|
\ ])
|
2013-08-26 21:12:00 -04:00
|
|
|
|
2013-08-26 20:56:54 -04:00
|
|
|
function! s:get_section(winnr, key, ...)
|
2013-08-26 21:12:00 -04:00
|
|
|
if has_key(s:section_truncate_width, a:key)
|
2019-02-03 11:30:55 -05:00
|
|
|
if airline#util#winwidth(a:winnr) < s:section_truncate_width[a:key]
|
2013-08-26 21:12:00 -04:00
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
endif
|
2013-09-22 17:43:14 -04:00
|
|
|
let spc = g:airline_symbols.space
|
2016-04-27 14:11:40 -04:00
|
|
|
if !exists('g:airline_section_{a:key}')
|
|
|
|
return ''
|
|
|
|
endif
|
2013-08-26 20:56:54 -04:00
|
|
|
let text = airline#util#getwinvar(a:winnr, 'airline_section_'.a:key, g:airline_section_{a:key})
|
2013-09-22 17:43:14 -04:00
|
|
|
let [prefix, suffix] = [get(a:000, 0, '%('.spc), get(a:000, 1, spc.'%)')]
|
2013-08-26 20:56:54 -04:00
|
|
|
return empty(text) ? '' : prefix.text.suffix
|
|
|
|
endfunction
|
|
|
|
|
2013-09-01 10:24:24 -04:00
|
|
|
function! s:build_sections(builder, context, keys)
|
2013-08-27 19:57:18 -04:00
|
|
|
for key in a:keys
|
2015-12-26 00:10:55 -05:00
|
|
|
if (key == 'warning' || key == 'error') && !a:context.active
|
2013-09-01 10:24:24 -04:00
|
|
|
continue
|
|
|
|
endif
|
2013-09-09 21:34:35 -04:00
|
|
|
call s:add_section(a:builder, a:context, key)
|
|
|
|
endfor
|
|
|
|
endfunction
|
2013-09-01 10:24:24 -04:00
|
|
|
|
2016-02-02 14:32:30 -05:00
|
|
|
" There still is a highlighting bug when using groups %(%) in the statusline,
|
2016-12-13 15:14:51 -05:00
|
|
|
" deactivate it, unless it is fixed (7.4.1511)
|
2016-02-02 14:32:30 -05:00
|
|
|
if s:section_use_groups && (v:version >= 704 || (v:version >= 703 && has('patch81')))
|
2016-04-20 15:10:28 -04:00
|
|
|
function! s:add_section(builder, context, key)
|
2016-12-14 10:10:33 -05:00
|
|
|
let condition = (a:key is# "warning" || a:key is# "error") &&
|
|
|
|
\ (v:version == 704 && !has("patch1511"))
|
2013-08-27 19:57:18 -04:00
|
|
|
" i have no idea why the warning section needs special treatment, but it's
|
|
|
|
" needed to prevent separators from showing up
|
2016-01-28 13:01:05 -05:00
|
|
|
if ((a:key == 'error' || a:key == 'warning') && empty(s:get_section(a:context.winnr, a:key)))
|
|
|
|
return
|
|
|
|
endif
|
2016-12-13 15:14:51 -05:00
|
|
|
if condition
|
2013-08-27 19:57:18 -04:00
|
|
|
call a:builder.add_raw('%(')
|
|
|
|
endif
|
2013-09-09 21:34:35 -04:00
|
|
|
call a:builder.add_section('airline_'.a:key, s:get_section(a:context.winnr, a:key))
|
2016-12-13 15:14:51 -05:00
|
|
|
if condition
|
2013-08-27 19:57:18 -04:00
|
|
|
call a:builder.add_raw('%)')
|
|
|
|
endif
|
2013-09-09 21:34:35 -04:00
|
|
|
endfunction
|
|
|
|
else
|
|
|
|
" older version don't like the use of %(%)
|
2016-04-20 15:10:28 -04:00
|
|
|
function! s:add_section(builder, context, key)
|
2016-01-30 10:47:40 -05:00
|
|
|
if ((a:key == 'error' || a:key == 'warning') && empty(s:get_section(a:context.winnr, a:key)))
|
|
|
|
return
|
|
|
|
endif
|
2013-09-09 21:34:35 -04:00
|
|
|
if a:key == 'warning'
|
|
|
|
call a:builder.add_raw('%#airline_warning#'.s:get_section(a:context.winnr, a:key))
|
2016-01-28 05:15:25 -05:00
|
|
|
elseif a:key == 'error'
|
2015-12-26 00:10:55 -05:00
|
|
|
call a:builder.add_raw('%#airline_error#'.s:get_section(a:context.winnr, a:key))
|
2013-09-09 21:34:35 -04:00
|
|
|
else
|
|
|
|
call a:builder.add_section('airline_'.a:key, s:get_section(a:context.winnr, a:key))
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
endif
|
2013-08-27 19:57:18 -04:00
|
|
|
|
2013-08-26 20:56:54 -04:00
|
|
|
function! airline#extensions#default#apply(builder, context)
|
|
|
|
let winnr = a:context.winnr
|
|
|
|
let active = a:context.active
|
|
|
|
|
|
|
|
if airline#util#getwinvar(winnr, 'airline_render_left', active || (!active && !g:airline_inactive_collapse))
|
2014-11-22 11:52:54 -05:00
|
|
|
call s:build_sections(a:builder, a:context, s:layout[0])
|
2013-08-26 20:56:54 -04:00
|
|
|
else
|
2014-11-22 11:52:54 -05:00
|
|
|
let text = s:get_section(winnr, 'c')
|
2014-08-15 15:18:56 -04:00
|
|
|
if empty(text)
|
|
|
|
let text = ' %f%m '
|
|
|
|
endif
|
|
|
|
call a:builder.add_section('airline_c'.(a:context.bufnr), text)
|
2013-08-26 20:56:54 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
call a:builder.split(s:get_section(winnr, 'gutter', '', ''))
|
|
|
|
|
|
|
|
if airline#util#getwinvar(winnr, 'airline_render_right', 1)
|
2014-11-22 11:52:54 -05:00
|
|
|
call s:build_sections(a:builder, a:context, s:layout[1])
|
2013-08-26 20:56:54 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
return 1
|
|
|
|
endfunction
|