aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2015-01-12 10:28:32 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2015-01-12 10:28:32 -0300
commit62c1daffe028185030d0d8e95dc2c6532457b4fa (patch)
tree52ef49316e50b2741e268d3ee6df5af85643bf31
parenta16cd73eadf473e3f2da104e2620680c4b5dd9d6 (diff)
downloadrneovim-62c1daffe028185030d0d8e95dc2c6532457b4fa.tar.gz
rneovim-62c1daffe028185030d0d8e95dc2c6532457b4fa.tar.bz2
rneovim-62c1daffe028185030d0d8e95dc2c6532457b4fa.zip
syntax: Refresh UI when the color scheme changes
-rw-r--r--src/nvim/syntax.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c
index 805f808449..e5f7662a32 100644
--- a/src/nvim/syntax.c
+++ b/src/nvim/syntax.c
@@ -6037,6 +6037,7 @@ int load_colors(char_u *name)
apply_autocmds(EVENT_COLORSCHEME, name, curbuf->b_fname, FALSE, curbuf);
recursive = FALSE;
+ ui_refresh();
return retval;
}