diff options
author | Dongdong Zhou <dzhou121@gmail.com> | 2017-06-26 11:19:40 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2017-10-26 09:35:13 +0200 |
commit | 461ae698242458bffbf5fb68de89fe8b2a3defd2 (patch) | |
tree | 7f6172159e428b28d63c820fa9a3c0272393b884 /src/nvim/api/ui_events.in.h | |
parent | 866dadaf753ba3733feb8c22d7da47af757bd35c (diff) | |
download | rneovim-461ae698242458bffbf5fb68de89fe8b2a3defd2.tar.gz rneovim-461ae698242458bffbf5fb68de89fe8b2a3defd2.tar.bz2 rneovim-461ae698242458bffbf5fb68de89fe8b2a3defd2.zip |
ext_cmdline: Add function block support
Diffstat (limited to 'src/nvim/api/ui_events.in.h')
-rw-r--r-- | src/nvim/api/ui_events.in.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/api/ui_events.in.h b/src/nvim/api/ui_events.in.h index 17eefbe1d6..5602dc6df3 100644 --- a/src/nvim/api/ui_events.in.h +++ b/src/nvim/api/ui_events.in.h @@ -75,5 +75,9 @@ void cmdline_char(String c, Integer shift, Integer level) FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; void cmdline_hide(Integer level) FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; +void cmdline_function_show(void) + FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; +void cmdline_function_hide(void) + FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; #endif // NVIM_API_UI_EVENTS_IN_H |