Fix &stl reset to global value when new file is loaded

Fixes #241
Ref #240
This commit is contained in:
ZyX 2013-02-20 20:57:44 +04:00 committed by Kim Silkebækken
parent b347d53b6d
commit 861f7dc179
1 changed files with 6 additions and 1 deletions

View File

@ -52,6 +52,9 @@ function! s:GetWinID(winnr)
if empty(r)
let r = s:pyeval('str(uuid.uuid4())')
call setwinvar(a:winnr, 'window_id', r)
endif
" Without this condition it triggers unneeded statusline redraw
if getwinvar(a:winnr, '&statusline') isnot# '%!Powerline("'.r.'")'
call setwinvar(a:winnr, '&statusline', '%!Powerline("'.r.'")')
endif
return r
@ -64,9 +67,11 @@ function! Powerline(window_id)
endfunction
function! PowerlineNew()
return Powerline(s:GetWinID(winnr()))
call map(range(1, winnr('$')), 's:GetWinID(v:val)')
endfunction
" Is immediately changed when Powerline() function is run. Good for global
" value.
set statusline=%!PowerlineNew()
function! PowerlineRegisterCachePurgerEvent(event)