aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2018-09-08 10:35:09 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2018-12-31 12:44:22 +0100
commit16c3337122955c1e18c5ff69dcb14b61c43c4ac0 (patch)
tree446838307170e826dcd9c9dedf229e2412ae42cd /src/nvim/api
parent882dd63dc735a7826f6ee0888a404f13f6c7cb80 (diff)
downloadrneovim-16c3337122955c1e18c5ff69dcb14b61c43c4ac0.tar.gz
rneovim-16c3337122955c1e18c5ff69dcb14b61c43c4ac0.tar.bz2
rneovim-16c3337122955c1e18c5ff69dcb14b61c43c4ac0.zip
multigrid: use grid-based coordinates for ext_popupmenu
Diffstat (limited to 'src/nvim/api')
-rw-r--r--src/nvim/api/ui_events.in.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/api/ui_events.in.h b/src/nvim/api/ui_events.in.h
index 8870f39721..308d5aaf02 100644
--- a/src/nvim/api/ui_events.in.h
+++ b/src/nvim/api/ui_events.in.h
@@ -87,7 +87,8 @@ 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)
+void popupmenu_show(Array items, Integer selected,
+ Integer row, Integer col, Integer grid)
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;
void popupmenu_hide(void)
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;