aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/ui_events.in.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2017-10-31 16:46:02 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2019-02-10 13:36:46 +0100
commit51fc54325c55eb3cefafec627d73cc19c220d7ed (patch)
tree476f20c32019ad9d4f4059031f405f90266c08c2 /src/nvim/api/ui_events.in.h
parent3ff1228f785705a46a0bd24fb5dc2bf76b6dad68 (diff)
downloadrneovim-51fc54325c55eb3cefafec627d73cc19c220d7ed.tar.gz
rneovim-51fc54325c55eb3cefafec627d73cc19c220d7ed.tar.bz2
rneovim-51fc54325c55eb3cefafec627d73cc19c220d7ed.zip
ui: implement ext_messages
Co-Author: Dongdong Zhou <dzhou121@gmail.com>
Diffstat (limited to 'src/nvim/api/ui_events.in.h')
-rw-r--r--src/nvim/api/ui_events.in.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/nvim/api/ui_events.in.h b/src/nvim/api/ui_events.in.h
index ef3ff0f4c2..b57cf8d3ef 100644
--- a/src/nvim/api/ui_events.in.h
+++ b/src/nvim/api/ui_events.in.h
@@ -141,4 +141,17 @@ void wildmenu_select(Integer selected)
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;
void wildmenu_hide(void)
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;
+
+void msg_show(String kind, Array content, Boolean replace_last)
+ FUNC_API_SINCE(6) FUNC_API_REMOTE_ONLY;
+void msg_clear(void)
+ FUNC_API_SINCE(6) FUNC_API_REMOTE_ONLY;
+void msg_showcmd(Array content)
+ FUNC_API_SINCE(6) FUNC_API_REMOTE_ONLY;
+void msg_showmode(Array content)
+ FUNC_API_SINCE(6) FUNC_API_REMOTE_ONLY;
+void msg_ruler(Array content)
+ FUNC_API_SINCE(6) FUNC_API_REMOTE_ONLY;
+void msg_history_show(Array entries)
+ FUNC_API_SINCE(6) FUNC_API_REMOTE_ONLY;
#endif // NVIM_API_UI_EVENTS_IN_H