mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-28 03:33:20 +08:00
39 lines
1002 B
VimL
39 lines
1002 B
VimL
" MIT License. Copyright (c) 2013 Bailey Ling.
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
let s:prototype = {}
|
|
|
|
function! s:prototype.split(gutter)
|
|
let self._side = 0
|
|
let self._line .= '%#'.self._curgroup.'#'.a:gutter
|
|
endfunction
|
|
|
|
function! s:prototype.add_section(group, contents)
|
|
if self._curgroup != ''
|
|
call self._highlighter.add_separator(self._curgroup, a:group, self._side)
|
|
let self._line .= '%#'.self._curgroup.'_to_'.a:group.'#'
|
|
let self._line .= self._side ? g:airline_left_sep : g:airline_right_sep
|
|
endif
|
|
|
|
let self._line .= '%#'.a:group.'#'.a:contents
|
|
let self._curgroup = a:group
|
|
endfunction
|
|
|
|
function! s:prototype.add_raw(text)
|
|
let self._line .= a:text
|
|
endfunction
|
|
|
|
function! s:prototype.build()
|
|
return self._line
|
|
endfunction
|
|
|
|
function! airline#builder#new(highlighter)
|
|
let builder = copy(s:prototype)
|
|
let builder._highlighter = a:highlighter
|
|
let builder._side = 1
|
|
let builder._curgroup = ''
|
|
let builder._line = '%{airline#check_mode()}'
|
|
return builder
|
|
endfunction
|
|
|