2014-01-20 04:44:44 +00:00
|
|
|
" MIT License. Copyright (c) 2013-2014 Bailey Ling.
|
2013-08-17 20:44:53 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
|
|
|
let s:prototype = {}
|
|
|
|
|
2013-08-24 04:08:57 +00:00
|
|
|
function! s:prototype.split(...)
|
2014-10-18 17:30:21 +00:00
|
|
|
call add(self._sections, ['|', a:0 ? a:1 : '%='])
|
2013-08-17 20:44:53 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-10-02 01:23:17 +00:00
|
|
|
function! s:prototype.add_section_spaced(group, contents)
|
|
|
|
call self.add_section(a:group, (g:airline_symbols.space).a:contents.(g:airline_symbols.space))
|
|
|
|
endfunction
|
|
|
|
|
2013-08-17 20:44:53 +00:00
|
|
|
function! s:prototype.add_section(group, contents)
|
2014-10-18 17:30:21 +00:00
|
|
|
call add(self._sections, [a:group, a:contents])
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:prototype.add_raw(text)
|
|
|
|
call add(self._sections, ['', a:text])
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:prototype.build()
|
|
|
|
let side = 1
|
|
|
|
let prev_group = ''
|
|
|
|
let line = ''
|
2014-10-18 17:59:24 +00:00
|
|
|
let i = 0
|
|
|
|
let length = len(self._sections)
|
2014-10-18 17:30:21 +00:00
|
|
|
|
2014-10-18 17:59:24 +00:00
|
|
|
while i < length
|
|
|
|
let section = self._sections[i]
|
2014-10-18 17:30:21 +00:00
|
|
|
let group = section[0]
|
|
|
|
let contents = section[1]
|
|
|
|
|
2014-10-18 17:59:24 +00:00
|
|
|
if group == ''
|
|
|
|
let line .= contents
|
|
|
|
elseif group == '|'
|
2014-10-18 17:30:21 +00:00
|
|
|
let side = 0
|
|
|
|
let line .= contents
|
2014-10-18 17:59:24 +00:00
|
|
|
let prev_group = ''
|
|
|
|
else
|
|
|
|
if i == 0
|
|
|
|
let line .= '%#'.group.'#'
|
2014-10-18 17:30:21 +00:00
|
|
|
endif
|
|
|
|
|
2014-10-18 17:59:24 +00:00
|
|
|
if prev_group != '' && group != ''
|
|
|
|
let line .= s:get_seperator(self, prev_group, group, side)
|
|
|
|
endif
|
2014-10-18 17:30:21 +00:00
|
|
|
|
2014-10-18 17:59:24 +00:00
|
|
|
let line .= s:get_accented_line(self, group, contents)
|
2014-10-18 17:30:21 +00:00
|
|
|
let prev_group = group
|
|
|
|
endif
|
2014-10-18 17:59:24 +00:00
|
|
|
|
|
|
|
let i = i + 1
|
|
|
|
endwhile
|
2014-10-18 17:30:21 +00:00
|
|
|
|
|
|
|
if !self._context.active
|
|
|
|
let line = substitute(line, '%#.\{-}\ze#', '\0_inactive', 'g')
|
2013-09-07 03:06:08 +00:00
|
|
|
endif
|
2014-10-18 17:30:21 +00:00
|
|
|
return line
|
|
|
|
endfunction
|
2013-09-07 03:06:08 +00:00
|
|
|
|
2014-10-18 17:59:24 +00:00
|
|
|
function! s:get_seperator(self, prev_group, group, side)
|
|
|
|
let line = ''
|
|
|
|
if airline#highlighter#is_same_bg(a:prev_group, a:group)
|
|
|
|
let line .= a:side ? a:self._context.left_alt_sep : a:self._context.right_alt_sep
|
|
|
|
else
|
|
|
|
call airline#highlighter#add_separator(a:prev_group, a:group, a:side)
|
|
|
|
let line .= '%#'.a:prev_group.'_to_'.a:group.'#'
|
|
|
|
let line .= a:side ? a:self._context.left_sep : a:self._context.right_sep
|
|
|
|
let line .= '%#'.a:group.'#'
|
|
|
|
endif
|
|
|
|
return line
|
|
|
|
endfunction
|
|
|
|
|
2014-10-18 17:30:21 +00:00
|
|
|
function! s:get_accented_line(self, group, contents)
|
|
|
|
if a:self._context.active
|
2013-09-22 21:15:02 +00:00
|
|
|
let contents = []
|
|
|
|
let content_parts = split(a:contents, '__accent')
|
|
|
|
for cpart in content_parts
|
|
|
|
let accent = matchstr(cpart, '_\zs[^#]*\ze')
|
|
|
|
call add(contents, cpart)
|
|
|
|
endfor
|
|
|
|
let line = join(contents, a:group)
|
|
|
|
let line = substitute(line, '__restore__', a:group, 'g')
|
|
|
|
else
|
|
|
|
let line = substitute(a:contents, '%#__accent[^#]*#', '', 'g')
|
|
|
|
let line = substitute(line, '%#__restore__#', '', 'g')
|
|
|
|
endif
|
2014-10-18 17:30:21 +00:00
|
|
|
return line
|
2013-08-17 20:44:53 +00:00
|
|
|
endfunction
|
2013-08-16 01:12:02 +00:00
|
|
|
|
2013-08-24 13:40:20 +00:00
|
|
|
function! airline#builder#new(context)
|
2013-08-17 20:44:53 +00:00
|
|
|
let builder = copy(s:prototype)
|
2013-08-24 05:08:22 +00:00
|
|
|
let builder._context = a:context
|
2014-10-18 17:30:21 +00:00
|
|
|
let builder._sections = []
|
2013-09-04 19:20:06 +00:00
|
|
|
|
|
|
|
call extend(builder._context, {
|
|
|
|
\ 'left_sep': g:airline_left_sep,
|
|
|
|
\ 'left_alt_sep': g:airline_left_alt_sep,
|
|
|
|
\ 'right_sep': g:airline_right_sep,
|
|
|
|
\ 'right_alt_sep': g:airline_right_alt_sep,
|
|
|
|
\ }, 'keep')
|
2013-08-16 01:12:02 +00:00
|
|
|
return builder
|
|
|
|
endfunction
|
2013-08-17 20:44:53 +00:00
|
|
|
|