fix color bug

Fixes a bug that happened, when an active buffer was closed and
reopened. Calls s:set_colors() in this case.
This commit is contained in:
Marco Hinz 2013-03-05 23:42:56 +01:00
parent fbde8b57d9
commit 942600a2ce

View File

@ -60,7 +60,8 @@ endif
aug signify
au!
au ColorScheme * call s:set_colors()
au BufWritePost,BufEnter * call s:start()
au BufWritePost * call s:start()
au BufEnter * let s:colors_set_b = 0 | call s:start()
au BufDelete * call s:stop() | call remove(s:active_buffers, expand('%:p'))
aug END