aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/api.txt
diff options
context:
space:
mode:
authorYatao Li <yatli@microsoft.com>2020-02-24 16:40:58 +0800
committerYatao Li <yatli@microsoft.com>2020-04-28 01:52:02 +0800
commit630ec6cfb8670607ddfc67dd4e56e98c17746ca6 (patch)
tree68b5436a3c5a94d8233ae4edd7b906f35e24608f /runtime/doc/api.txt
parentd90a92bcd3c18111abb62a57192c9e151839a7f4 (diff)
downloadrneovim-630ec6cfb8670607ddfc67dd4e56e98c17746ca6.tar.gz
rneovim-630ec6cfb8670607ddfc67dd4e56e98c17746ca6.tar.bz2
rneovim-630ec6cfb8670607ddfc67dd4e56e98c17746ca6.zip
API/UI: Allow UI to set PUM position and size, and pass the position to CompleteChanged
Diffstat (limited to 'runtime/doc/api.txt')
-rw-r--r--runtime/doc/api.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt
index 39b6c6417d..c5ccf35c8e 100644
--- a/runtime/doc/api.txt
+++ b/runtime/doc/api.txt
@@ -2341,6 +2341,22 @@ nvim_ui_pum_set_height({height}) *nvim_ui_pum_set_height()*
Parameters: ~
{height} Popupmenu height, must be greater than zero.
+ *nvim_ui_pum_set_bounds()*
+nvim_ui_pum_set_bounds({width}, {height}, {row}, {col})
+
+ Tells Nvim the geometry of the popumenu, to align floating
+ windows with an external popup menu. Note that this method
+ is not to be confused with |nvim_ui_pum_set_height()|, which
+ sets the number of visible items in the popup menu, while
+ this function sets the bounding box of the popup menu,
+ including visual decorations such as boarders and sliders.
+
+ Parameters: ~
+ {width} Popupmenu width, must be greater than zero.
+ {height} Popupmenu height, must be greater than zero.
+ {row} Popupmenu row, must be greater or equal to zero.
+ {height} Popupmenu height, must be greater or equal to zero.
+
nvim_ui_set_option({name}, {value}) *nvim_ui_set_option()*
TODO: Documentation