diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2017-12-12 18:23:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-12 18:23:19 +0100 |
commit | 34057045beca40406673ff421a4ef1e8e8c08853 (patch) | |
tree | ad32d3d1f5e05cd1f522e67bcd42f8968f6dbf21 /src/nvim/ui.c | |
parent | f976826690a975e03bb57f6cc84955c59ee6cff4 (diff) | |
download | rneovim-34057045beca40406673ff421a4ef1e8e8c08853.tar.gz rneovim-34057045beca40406673ff421a4ef1e8e8c08853.tar.bz2 rneovim-34057045beca40406673ff421a4ef1e8e8c08853.zip |
ui: forward relevant option updates to UIs (#7520)
also make termguicolors mutable after startup
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r-- | src/nvim/ui.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c index 3b8b3ac9a7..81da88c54a 100644 --- a/src/nvim/ui.c +++ b/src/nvim/ui.c @@ -339,6 +339,7 @@ void ui_attach_impl(UI *ui) } uis[ui_count++] = ui; + ui_refresh_options(); ui_refresh(); } |