From b51ba122c1edfb769e72c25c4f14f469f59f1b8e Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Tue, 2 Jul 2019 15:53:43 +0200 Subject: screen: use dedicated message grid add proper msg_set_pos event, delet win_scroll_over_* make compositor click through unfocusable grids add MsgArea attribute for the message/cmdline area, and add docs and tests --- src/nvim/api/ui_events.in.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/nvim/api/ui_events.in.h') diff --git a/src/nvim/api/ui_events.in.h b/src/nvim/api/ui_events.in.h index 9f58257e53..6677e248cf 100644 --- a/src/nvim/api/ui_events.in.h +++ b/src/nvim/api/ui_events.in.h @@ -112,9 +112,7 @@ void win_hide(Integer grid) FUNC_API_SINCE(6) FUNC_API_REMOTE_ONLY; void win_close(Integer grid) FUNC_API_SINCE(6) FUNC_API_REMOTE_ONLY; -void win_scroll_over_start(void) - FUNC_API_SINCE(6) FUNC_API_BRIDGE_IMPL FUNC_API_COMPOSITOR_IMPL; -void win_scroll_over_reset(void) +void msg_set_pos(Integer grid, Integer row, Boolean scrolled, String sep_char) FUNC_API_SINCE(6) FUNC_API_BRIDGE_IMPL FUNC_API_COMPOSITOR_IMPL; void popupmenu_show(Array items, Integer selected, -- cgit