aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/ui.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2019-07-16 10:17:29 +0200
committerGitHub <noreply@github.com>2019-07-16 10:17:29 +0200
commit8a3f8589a3eda5d42068fad5f5430f4e648f6f0e (patch)
tree148155fd00a28ad8979292ec5af5a39072411a4c /src/nvim/api/ui.c
parent6aab5715c55504bf6301a5d4bc113485e881c6ae (diff)
parent857b29bdd8e093948311c5254a84745c9324b496 (diff)
downloadrneovim-8a3f8589a3eda5d42068fad5f5430f4e648f6f0e.tar.gz
rneovim-8a3f8589a3eda5d42068fad5f5430f4e648f6f0e.tar.bz2
rneovim-8a3f8589a3eda5d42068fad5f5430f4e648f6f0e.zip
Merge pull request #10504 from bfredl/hl_def
highlight: expose builtin highlight groups using hl_group_set event
Diffstat (limited to 'src/nvim/api/ui.c')
-rw-r--r--src/nvim/api/ui.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/api/ui.c b/src/nvim/api/ui.c
index 4f28ea5af3..20ed77afad 100644
--- a/src/nvim/api/ui.c
+++ b/src/nvim/api/ui.c
@@ -123,6 +123,7 @@ void nvim_ui_attach(uint64_t channel_id, Integer width, Integer height,
ui->mode_change = remote_ui_mode_change;
ui->grid_scroll = remote_ui_grid_scroll;
ui->hl_attr_define = remote_ui_hl_attr_define;
+ ui->hl_group_set = remote_ui_hl_group_set;
ui->raw_line = remote_ui_raw_line;
ui->bell = remote_ui_bell;
ui->visual_bell = remote_ui_visual_bell;