aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/ui_events.in.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2017-12-12 18:23:19 +0100
committerGitHub <noreply@github.com>2017-12-12 18:23:19 +0100
commit34057045beca40406673ff421a4ef1e8e8c08853 (patch)
treead32d3d1f5e05cd1f522e67bcd42f8968f6dbf21 /src/nvim/api/ui_events.in.h
parentf976826690a975e03bb57f6cc84955c59ee6cff4 (diff)
downloadrneovim-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_events.in.h')
-rw-r--r--src/nvim/api/ui_events.in.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/api/ui_events.in.h b/src/nvim/api/ui_events.in.h
index 847b21072a..3d2253e918 100644
--- a/src/nvim/api/ui_events.in.h
+++ b/src/nvim/api/ui_events.in.h
@@ -58,6 +58,8 @@ void set_title(String title)
FUNC_API_SINCE(3);
void set_icon(String icon)
FUNC_API_SINCE(3);
+void option_set(String name, Object value)
+ FUNC_API_SINCE(4) FUNC_API_BRIDGE_IMPL;
void popupmenu_show(Array items, Integer selected, Integer row, Integer col)
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;