2016-01-15 02:38:38 +00:00
|
|
|
" MIT License. Copyright (c) 2013-2016 Bailey Ling.
|
2013-08-17 20:44:53 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
2016-09-24 00:16:30 +00:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
2013-08-17 20:44:53 +00:00
|
|
|
let s:prototype = {}
|
|
|
|
|
2016-12-13 07:44:39 +00:00
|
|
|
function! s:prototype.split(...) dict
|
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
|
|
|
|
|
2016-12-13 07:44:39 +00:00
|
|
|
function! s:prototype.add_section_spaced(group, contents) dict
|
2016-05-12 19:34:29 +00:00
|
|
|
let spc = empty(a:contents) ? '' : g:airline_symbols.space
|
|
|
|
call self.add_section(a:group, spc.a:contents.spc)
|
2013-10-02 01:23:17 +00:00
|
|
|
endfunction
|
|
|
|
|
2016-12-13 07:44:39 +00:00
|
|
|
function! s:prototype.add_section(group, contents) dict
|
2014-10-18 17:30:21 +00:00
|
|
|
call add(self._sections, [a:group, a:contents])
|
|
|
|
endfunction
|
|
|
|
|
2016-12-13 07:44:39 +00:00
|
|
|
function! s:prototype.add_raw(text) dict
|
2014-10-18 17:30:21 +00:00
|
|
|
call add(self._sections, ['', a:text])
|
|
|
|
endfunction
|
|
|
|
|
2014-11-22 16:52:54 +00:00
|
|
|
function! s:get_prev_group(sections, i)
|
|
|
|
let x = a:i - 1
|
|
|
|
while x >= 0
|
|
|
|
let group = a:sections[x][0]
|
|
|
|
if group != '' && group != '|'
|
|
|
|
return group
|
|
|
|
endif
|
|
|
|
let x = x - 1
|
|
|
|
endwhile
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|
2016-12-13 07:44:39 +00:00
|
|
|
function! s:prototype.build() dict
|
2014-10-18 17:30:21 +00:00
|
|
|
let side = 1
|
|
|
|
let line = ''
|
2014-10-18 17:59:24 +00:00
|
|
|
let i = 0
|
|
|
|
let length = len(self._sections)
|
2014-11-22 16:52:54 +00:00
|
|
|
let split = 0
|
Do not draw separators for empty sections
This is a little bit a hack, because by the time the separators are
added, it is not clear, if the following section is empty, therefore
we need to parse the content of the following section and eval the
expressions to find out, if this is empty
Remarks:
- catch all exceptions when eval'ing statusline
- make sure, that the seperators are highlighted
even when skipping empty regions (highlight group
names need to be adjusted)
- if a section is defined as empty, it will be removed completly from
the statusline. This means, it won't be called on the next update
and may not refresh properly (e.g. when the whitespace check
triggers, therefore, the whitesapce extension has to call an
explicit redraw whenever it is supposed to be refreshed)
2016-04-18 13:33:47 +00:00
|
|
|
let is_empty = 0
|
|
|
|
let prev_group = ''
|
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]
|
Do not draw separators for empty sections
This is a little bit a hack, because by the time the separators are
added, it is not clear, if the following section is empty, therefore
we need to parse the content of the following section and eval the
expressions to find out, if this is empty
Remarks:
- catch all exceptions when eval'ing statusline
- make sure, that the seperators are highlighted
even when skipping empty regions (highlight group
names need to be adjusted)
- if a section is defined as empty, it will be removed completly from
the statusline. This means, it won't be called on the next update
and may not refresh properly (e.g. when the whitespace check
triggers, therefore, the whitesapce extension has to call an
explicit redraw whenever it is supposed to be refreshed)
2016-04-18 13:33:47 +00:00
|
|
|
let pgroup = prev_group
|
2014-11-22 16:52:54 +00:00
|
|
|
let prev_group = s:get_prev_group(self._sections, i)
|
2016-09-09 06:06:32 +00:00
|
|
|
if group ==# 'airline_c' && !self._context.active && has_key(self._context, 'bufnr')
|
2016-09-08 16:39:29 +00:00
|
|
|
let group = 'airline_c'. self._context.bufnr
|
2016-09-26 09:33:25 +00:00
|
|
|
elseif prev_group ==# 'airline_c' && !self._context.active && has_key(self._context, 'bufnr')
|
|
|
|
let prev_group = 'airline_c'. self._context.bufnr
|
2016-09-08 16:39:29 +00:00
|
|
|
endif
|
Do not draw separators for empty sections
This is a little bit a hack, because by the time the separators are
added, it is not clear, if the following section is empty, therefore
we need to parse the content of the following section and eval the
expressions to find out, if this is empty
Remarks:
- catch all exceptions when eval'ing statusline
- make sure, that the seperators are highlighted
even when skipping empty regions (highlight group
names need to be adjusted)
- if a section is defined as empty, it will be removed completly from
the statusline. This means, it won't be called on the next update
and may not refresh properly (e.g. when the whitespace check
triggers, therefore, the whitesapce extension has to call an
explicit redraw whenever it is supposed to be refreshed)
2016-04-18 13:33:47 +00:00
|
|
|
if is_empty
|
|
|
|
let prev_group = pgroup
|
|
|
|
endif
|
|
|
|
let is_empty = s:section_is_empty(self, contents)
|
|
|
|
|
|
|
|
if is_empty
|
|
|
|
" need to fix highlighting groups, since we
|
|
|
|
" have skipped a section, we actually need
|
2016-09-24 00:16:30 +00:00
|
|
|
" the previous previous group and so the
|
Do not draw separators for empty sections
This is a little bit a hack, because by the time the separators are
added, it is not clear, if the following section is empty, therefore
we need to parse the content of the following section and eval the
expressions to find out, if this is empty
Remarks:
- catch all exceptions when eval'ing statusline
- make sure, that the seperators are highlighted
even when skipping empty regions (highlight group
names need to be adjusted)
- if a section is defined as empty, it will be removed completly from
the statusline. This means, it won't be called on the next update
and may not refresh properly (e.g. when the whitespace check
triggers, therefore, the whitesapce extension has to call an
explicit redraw whenever it is supposed to be refreshed)
2016-04-18 13:33:47 +00:00
|
|
|
" seperator goes from the previous previous group
|
|
|
|
" to the current group
|
|
|
|
let pgroup = group
|
|
|
|
endif
|
2014-10-18 17:30:21 +00:00
|
|
|
|
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-11-22 16:52:54 +00:00
|
|
|
let split = 1
|
2014-10-18 17:59:24 +00:00
|
|
|
else
|
2014-11-22 16:52:54 +00:00
|
|
|
if prev_group == ''
|
2014-10-18 17:59:24 +00:00
|
|
|
let line .= '%#'.group.'#'
|
2014-11-22 16:52:54 +00:00
|
|
|
elseif split
|
Do not draw separators for empty sections
This is a little bit a hack, because by the time the separators are
added, it is not clear, if the following section is empty, therefore
we need to parse the content of the following section and eval the
expressions to find out, if this is empty
Remarks:
- catch all exceptions when eval'ing statusline
- make sure, that the seperators are highlighted
even when skipping empty regions (highlight group
names need to be adjusted)
- if a section is defined as empty, it will be removed completly from
the statusline. This means, it won't be called on the next update
and may not refresh properly (e.g. when the whitespace check
triggers, therefore, the whitesapce extension has to call an
explicit redraw whenever it is supposed to be refreshed)
2016-04-18 13:33:47 +00:00
|
|
|
if !is_empty
|
|
|
|
let line .= s:get_transitioned_seperator(self, prev_group, group, side)
|
|
|
|
endif
|
2014-11-22 16:52:54 +00:00
|
|
|
let split = 0
|
|
|
|
else
|
Do not draw separators for empty sections
This is a little bit a hack, because by the time the separators are
added, it is not clear, if the following section is empty, therefore
we need to parse the content of the following section and eval the
expressions to find out, if this is empty
Remarks:
- catch all exceptions when eval'ing statusline
- make sure, that the seperators are highlighted
even when skipping empty regions (highlight group
names need to be adjusted)
- if a section is defined as empty, it will be removed completly from
the statusline. This means, it won't be called on the next update
and may not refresh properly (e.g. when the whitespace check
triggers, therefore, the whitesapce extension has to call an
explicit redraw whenever it is supposed to be refreshed)
2016-04-18 13:33:47 +00:00
|
|
|
if !is_empty
|
|
|
|
let line .= s:get_seperator(self, prev_group, group, side)
|
|
|
|
endif
|
2014-10-18 17:59:24 +00:00
|
|
|
endif
|
Do not draw separators for empty sections
This is a little bit a hack, because by the time the separators are
added, it is not clear, if the following section is empty, therefore
we need to parse the content of the following section and eval the
expressions to find out, if this is empty
Remarks:
- catch all exceptions when eval'ing statusline
- make sure, that the seperators are highlighted
even when skipping empty regions (highlight group
names need to be adjusted)
- if a section is defined as empty, it will be removed completly from
the statusline. This means, it won't be called on the next update
and may not refresh properly (e.g. when the whitespace check
triggers, therefore, the whitesapce extension has to call an
explicit redraw whenever it is supposed to be refreshed)
2016-04-18 13:33:47 +00:00
|
|
|
let line .= is_empty ? '' : s:get_accented_line(self, group, contents)
|
2014-10-18 17:30:21 +00:00
|
|
|
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
|
2016-09-08 16:39:29 +00:00
|
|
|
"let line = substitute(line, '%#airline_c#', '%#airline_c'.self._context.bufnr.'#', '')
|
2014-10-18 17:30:21 +00:00
|
|
|
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-11-15 19:49:02 +00:00
|
|
|
function! s:should_change_group(group1, group2)
|
|
|
|
if a:group1 == a:group2
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
let color1 = airline#highlighter#get_highlight(a:group1)
|
|
|
|
let color2 = airline#highlighter#get_highlight(a:group2)
|
2016-02-05 21:19:48 +00:00
|
|
|
if g:airline_gui_mode ==# 'gui'
|
2014-11-15 19:49:02 +00:00
|
|
|
return color1[1] != color2[1] || color1[0] != color2[0]
|
|
|
|
else
|
|
|
|
return color1[3] != color2[3] || color1[2] != color2[2]
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2014-11-22 16:52:54 +00:00
|
|
|
function! s:get_transitioned_seperator(self, prev_group, group, side)
|
2014-10-18 17:59:24 +00:00
|
|
|
let line = ''
|
2014-11-22 16:52:54 +00:00
|
|
|
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.'#'
|
|
|
|
return line
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:get_seperator(self, prev_group, group, side)
|
2014-11-15 19:49:02 +00:00
|
|
|
if s:should_change_group(a:prev_group, a:group)
|
2014-11-22 16:52:54 +00:00
|
|
|
return s:get_transitioned_seperator(a:self, a:prev_group, a:group, a:side)
|
2014-11-15 19:49:02 +00:00
|
|
|
else
|
2014-11-22 16:52:54 +00:00
|
|
|
return a:side ? a:self._context.left_alt_sep : a:self._context.right_alt_sep
|
2014-10-18 17:59:24 +00:00
|
|
|
endif
|
|
|
|
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
|
|
|
|
Do not draw separators for empty sections
This is a little bit a hack, because by the time the separators are
added, it is not clear, if the following section is empty, therefore
we need to parse the content of the following section and eval the
expressions to find out, if this is empty
Remarks:
- catch all exceptions when eval'ing statusline
- make sure, that the seperators are highlighted
even when skipping empty regions (highlight group
names need to be adjusted)
- if a section is defined as empty, it will be removed completly from
the statusline. This means, it won't be called on the next update
and may not refresh properly (e.g. when the whitespace check
triggers, therefore, the whitesapce extension has to call an
explicit redraw whenever it is supposed to be refreshed)
2016-04-18 13:33:47 +00:00
|
|
|
function! s:section_is_empty(self, content)
|
|
|
|
let start=1
|
|
|
|
|
2016-09-27 19:44:00 +00:00
|
|
|
" do not check for inactive windows or the tabline
|
Do not draw separators for empty sections
This is a little bit a hack, because by the time the separators are
added, it is not clear, if the following section is empty, therefore
we need to parse the content of the following section and eval the
expressions to find out, if this is empty
Remarks:
- catch all exceptions when eval'ing statusline
- make sure, that the seperators are highlighted
even when skipping empty regions (highlight group
names need to be adjusted)
- if a section is defined as empty, it will be removed completly from
the statusline. This means, it won't be called on the next update
and may not refresh properly (e.g. when the whitespace check
triggers, therefore, the whitesapce extension has to call an
explicit redraw whenever it is supposed to be refreshed)
2016-04-18 13:33:47 +00:00
|
|
|
if a:self._context.active == 0
|
|
|
|
return 0
|
2016-09-27 19:44:00 +00:00
|
|
|
elseif get(a:self._context, 'tabline', 0)
|
|
|
|
return 0
|
Do not draw separators for empty sections
This is a little bit a hack, because by the time the separators are
added, it is not clear, if the following section is empty, therefore
we need to parse the content of the following section and eval the
expressions to find out, if this is empty
Remarks:
- catch all exceptions when eval'ing statusline
- make sure, that the seperators are highlighted
even when skipping empty regions (highlight group
names need to be adjusted)
- if a section is defined as empty, it will be removed completly from
the statusline. This means, it won't be called on the next update
and may not refresh properly (e.g. when the whitespace check
triggers, therefore, the whitesapce extension has to call an
explicit redraw whenever it is supposed to be refreshed)
2016-04-18 13:33:47 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
" only check, if airline#skip_empty_sections == 1
|
|
|
|
if get(g:, 'airline_skip_empty_sections', 0) == 0
|
|
|
|
return 0
|
|
|
|
endif
|
2017-04-10 07:17:23 +00:00
|
|
|
|
|
|
|
" only check, if airline#skip_empty_sections == 1
|
2017-04-11 20:10:43 +00:00
|
|
|
if get(w:, 'airline_skip_empty_sections', -1) == 0
|
2017-04-10 07:17:23 +00:00
|
|
|
return 0
|
|
|
|
endif
|
Do not draw separators for empty sections
This is a little bit a hack, because by the time the separators are
added, it is not clear, if the following section is empty, therefore
we need to parse the content of the following section and eval the
expressions to find out, if this is empty
Remarks:
- catch all exceptions when eval'ing statusline
- make sure, that the seperators are highlighted
even when skipping empty regions (highlight group
names need to be adjusted)
- if a section is defined as empty, it will be removed completly from
the statusline. This means, it won't be called on the next update
and may not refresh properly (e.g. when the whitespace check
triggers, therefore, the whitesapce extension has to call an
explicit redraw whenever it is supposed to be refreshed)
2016-04-18 13:33:47 +00:00
|
|
|
" assume accents sections to be never empty
|
|
|
|
" (avoides, that on startup the mode message becomes empty)
|
|
|
|
if match(a:content, '%#__accent_[^#]*#.*__restore__#') > -1
|
|
|
|
return 0
|
|
|
|
endif
|
2016-09-24 20:06:41 +00:00
|
|
|
if empty(a:content)
|
|
|
|
return 1
|
|
|
|
endif
|
Do not draw separators for empty sections
This is a little bit a hack, because by the time the separators are
added, it is not clear, if the following section is empty, therefore
we need to parse the content of the following section and eval the
expressions to find out, if this is empty
Remarks:
- catch all exceptions when eval'ing statusline
- make sure, that the seperators are highlighted
even when skipping empty regions (highlight group
names need to be adjusted)
- if a section is defined as empty, it will be removed completly from
the statusline. This means, it won't be called on the next update
and may not refresh properly (e.g. when the whitespace check
triggers, therefore, the whitesapce extension has to call an
explicit redraw whenever it is supposed to be refreshed)
2016-04-18 13:33:47 +00:00
|
|
|
let list=matchlist(a:content, '%{\zs.\{-}\ze}', 1, start)
|
|
|
|
if empty(list)
|
|
|
|
return 0 " no function in statusline text
|
|
|
|
endif
|
|
|
|
while len(list) > 0
|
|
|
|
let expr = list[0]
|
|
|
|
try
|
|
|
|
" catch all exceptions, just in case
|
|
|
|
if !empty(eval(expr))
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
catch
|
|
|
|
return 0
|
|
|
|
endtry
|
|
|
|
let start += 1
|
|
|
|
let list=matchlist(a:content, '%{\zs.\{-}\ze}', 1, start)
|
|
|
|
endw
|
|
|
|
return 1
|
|
|
|
endfunction
|
|
|
|
|
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
|
|
|
|