diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-10-29 02:13:12 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-10-29 02:13:12 +0200 |
commit | 7b0ceb3726e6d331625d5754be534e28a7f6092a (patch) | |
tree | 2edc27166a5034c1fe4d670769dac2076c30cf7e /src/nvim/api/ui_events.in.h | |
parent | 122f52bf897abd1cda4fa467157657fee6bcfe94 (diff) | |
parent | 1a93f5883105c304d496d6c2e841626ebb7d44c1 (diff) | |
download | rneovim-7b0ceb3726e6d331625d5754be534e28a7f6092a.tar.gz rneovim-7b0ceb3726e6d331625d5754be534e28a7f6092a.tar.bz2 rneovim-7b0ceb3726e6d331625d5754be534e28a7f6092a.zip |
Merge #7173 'api/ui: externalize cmdline'
closes #6162
Diffstat (limited to 'src/nvim/api/ui_events.in.h')
-rw-r--r-- | src/nvim/api/ui_events.in.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/nvim/api/ui_events.in.h b/src/nvim/api/ui_events.in.h index 1b5d17584f..65357d008a 100644 --- a/src/nvim/api/ui_events.in.h +++ b/src/nvim/api/ui_events.in.h @@ -68,4 +68,20 @@ void popupmenu_select(Integer selected) void tabline_update(Tabpage current, Array tabs) FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; +void cmdline_show(Array content, Integer pos, String firstc, String prompt, + Integer indent, Integer level) + FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; +void cmdline_pos(Integer pos, Integer level) + FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; +void cmdline_special_char(String c, Boolean 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_block_show(Array lines) + FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; +void cmdline_block_append(Array lines) + FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; +void cmdline_block_hide(void) + FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; + #endif // NVIM_API_UI_EVENTS_IN_H |