From d5754eae020d672b4f6c62b636a56e0d6d56b4dc Mon Sep 17 00:00:00 2001 From: Utkarsh Maheshwari Date: Fri, 15 Jun 2018 02:41:59 +0530 Subject: multigrid: Add win_position event Throttle win_position events --- src/nvim/api/ui_events.in.h | 3 +++ 1 file changed, 3 insertions(+) (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 5c48cb4804..8870f39721 100644 --- a/src/nvim/api/ui_events.in.h +++ b/src/nvim/api/ui_events.in.h @@ -83,6 +83,9 @@ void grid_scroll(Integer grid, Integer top, Integer bot, FUNC_API_SINCE(5) FUNC_API_REMOTE_IMPL; void grid_destroy(Integer grid) FUNC_API_SINCE(5) FUNC_API_REMOTE_ONLY; +void win_position(Integer win, Integer grid, Integer startrow, + Integer startcol, Integer width, Integer height) + FUNC_API_SINCE(4) FUNC_API_REMOTE_ONLY; void popupmenu_show(Array items, Integer selected, Integer row, Integer col) FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY; -- cgit