inactivate existing statusline without building a new one.

This commit is contained in:
Bailey Ling
2013-08-24 03:43:55 +00:00
parent 3bb451f1f4
commit 53b856b0c5
2 changed files with 9 additions and 11 deletions
+1 -5
View File
@@ -24,15 +24,11 @@ function! s:prototype.add_raw(text)
endfunction
function! s:prototype.build()
if !self._context.active
let self._line = substitute(self._line, '%#.\{-}\ze#', '\0_inactive', 'g')
endif
return self._line
endfunction
function! airline#builder#new(context, highlighter)
function! airline#builder#new(highlighter)
let builder = copy(s:prototype)
let builder._context = a:context
let builder._highlighter = a:highlighter
let builder._side = 1
let builder._curgroup = ''