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/api/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/api/ui.c')
-rw-r--r-- | src/nvim/api/ui.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/api/ui.c b/src/nvim/api/ui.c index a9eaccfac5..35508fde6b 100644 --- a/src/nvim/api/ui.c +++ b/src/nvim/api/ui.c @@ -93,6 +93,7 @@ void nvim_ui_attach(uint64_t channel_id, Integer width, Integer height, ui->suspend = remote_ui_suspend; ui->set_title = remote_ui_set_title; ui->set_icon = remote_ui_set_icon; + ui->option_set = remote_ui_option_set; ui->event = remote_ui_event; memset(ui->ui_ext, 0, sizeof(ui->ui_ext)); |