From 9b45af6701ed6f89c3bf1a2b2d27d28bfaf575f8 Mon Sep 17 00:00:00 2001 From: cohama Date: Sun, 7 Apr 2013 20:01:47 +0900 Subject: [PATCH] Prevent clearing highlight definitions when colorscheme changed --- plugin/gitgutter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/gitgutter.vim b/plugin/gitgutter.vim index 606ff37..068931f 100644 --- a/plugin/gitgutter.vim +++ b/plugin/gitgutter.vim @@ -528,6 +528,7 @@ augroup gitgutter endif autocmd TabEnter * call GitGutterAll() endif + autocmd ColorScheme * call s:define_sign_column_highlight() | call s:define_highlights() augroup END " }}}