diff options
author | Utkarsh Maheshwari <utkarshme96@gmail.com> | 2018-06-15 02:41:59 +0530 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2018-12-31 12:44:22 +0100 |
commit | d5754eae020d672b4f6c62b636a56e0d6d56b4dc (patch) | |
tree | 09800750e6876c47f1254b6fb7b4df684724401c /src/nvim/api/ui_events.in.h | |
parent | 01555de2da79eaf6e569e5e6ee7244dbf5f709e5 (diff) | |
download | rneovim-d5754eae020d672b4f6c62b636a56e0d6d56b4dc.tar.gz rneovim-d5754eae020d672b4f6c62b636a56e0d6d56b4dc.tar.bz2 rneovim-d5754eae020d672b4f6c62b636a56e0d6d56b4dc.zip |
multigrid: Add win_position event
Throttle win_position events
Diffstat (limited to 'src/nvim/api/ui_events.in.h')
-rw-r--r-- | src/nvim/api/ui_events.in.h | 3 |
1 files changed, 3 insertions, 0 deletions
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; |