diff options
author | Dongdong Zhou <dzhou121@gmail.com> | 2017-05-11 07:51:10 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2017-10-26 09:35:13 +0200 |
commit | 866dadaf753ba3733feb8c22d7da47af757bd35c (patch) | |
tree | c96ea0abcdf2fe4856a0f99ccac89d1fc022065e /src/nvim/api/ui_events.in.h | |
parent | ab85999eb7c53e9d2b5bca5f8896ea11cb1df13e (diff) | |
download | rneovim-866dadaf753ba3733feb8c22d7da47af757bd35c.tar.gz rneovim-866dadaf753ba3733feb8c22d7da47af757bd35c.tar.bz2 rneovim-866dadaf753ba3733feb8c22d7da47af757bd35c.zip |
ext_cmdline: added cmdline level
add cchar_to_string
Diffstat (limited to 'src/nvim/api/ui_events.in.h')
-rw-r--r-- | src/nvim/api/ui_events.in.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/nvim/api/ui_events.in.h b/src/nvim/api/ui_events.in.h index 093251bb00..17eefbe1d6 100644 --- a/src/nvim/api/ui_events.in.h +++ b/src/nvim/api/ui_events.in.h @@ -66,17 +66,14 @@ void popupmenu_hide(void) void popupmenu_select(Integer selected) FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; void tabline_update(Tabpage current, Array tabs) - FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; - -void cmdline_enter(void) FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; -void cmdline_show(Array content, Integer pos, String firstc, String prompt) +void cmdline_show(Array content, Integer pos, String firstc, String prompt, Integer level) FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; -void cmdline_pos(Integer pos) +void cmdline_pos(Integer pos, Integer level) FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; -void cmdline_char(String c, Integer shift) +void cmdline_char(String c, Integer shift, Integer level) FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; -void cmdline_hide(void) +void cmdline_hide(Integer level) FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; #endif // NVIM_API_UI_EVENTS_IN_H |