ensure global variables are always there (#108).

This commit is contained in:
Bailey Ling 2013-07-31 19:37:35 +00:00
parent d107c4fd5d
commit 6df46d8d22
2 changed files with 2 additions and 2 deletions

View File

@ -63,8 +63,8 @@ A full list of screenshots can be found in the [Wiki][n].
Tracking down bugs can take a very long time due to different configurations, versions, and operating systems. To ensure a timely response, please help me out by doing the following:
* reproduce it with this [minivimrc][g] repository to rule out any configuration conflicts.
* include your version of vim, including patches, and operating system (`:version` will contain this information).
* a link to your vimrc or a gist which shows how you configured the plugin(s).
* and so I can reproduce; your `:version` of vim, and the commit of vim-airline you're using.
# Contributions

View File

@ -65,7 +65,7 @@ endfunction
" non-trivial number of external plugins use eventignore=all, so we need to account for that
function! s:sync_active_winnr()
if winnr() != s:active_winnr
call airline#update_statusline()
call s:on_window_changed()
endif
endfunction