summaryrefslogtreecommitdiffstats
path: root/runtime/doc/popup.txt
AgeCommit message (Collapse)Author
2020-05-26Update runtime filesBram Moolenaar
2020-05-18patch 8.2.0791: a second popup window with terminal causes troublev8.2.0791Bram Moolenaar
Problem: A second popup window with terminal causes trouble. Solution: Disallow opening a second terminal-popup window. (closes #6101, closes #6103) Avoid defaulting to an invalid line number.
2020-05-13patch 8.2.0748: cannot get a list of all popupsv8.2.0748Bram Moolenaar
Problem: Cannot get a list of all popups. Solution: Add popup_list(). Use it in the test runner.
2020-05-13patch 8.2.0747: cannot forcefully close all popupsv8.2.0747Bram Moolenaar
Problem: Cannot forcefully close all popups. Solution: Add the "force" argument to popup_clear(). Use it after running a test. Put back the check for a popup when editing a file.
2020-05-12Update runtime filesBram Moolenaar
2020-04-20Update runtime filesBram Moolenaar
2020-03-27Update runtime filesBram Moolenaar
2020-03-19Update runtime filesBram Moolenaar
2020-02-20patch 8.2.0286: cannot use popup_close() for a terminal popupv8.2.0286Bram Moolenaar
Problem: Cannot use popup_close() for a terminal popup. Solution: Allow using popup_close(). (closes #5666)
2020-02-15Update runtime files.Bram Moolenaar
2020-02-04Update runtime files.Bram Moolenaar
2019-12-12Vim 8.2 releasev8.2.0000v8.2.0Bram Moolenaar
2019-12-03Update a few runtime filesBram Moolenaar
2019-11-30Update runtime files.Bram Moolenaar
2019-11-17Update runtime files.Bram Moolenaar
2019-11-16patch 8.1.2304: cannot get the mouse position when getting a mouse clickv8.1.2304Bram Moolenaar
Problem: Cannot get the mouse position when getting a mouse click. Solution: Add getmousepos().
2019-11-13Update runtime filesBram Moolenaar
2019-11-11patch 8.1.2292: v:mouse_winid not set on click in popup windowv8.1.2292Bram Moolenaar
Problem: v:mouse_winid not set on click in popup window. Solution: Set v:mouse_winid. (closes #5171)
2019-11-09patch 8.1.2273: wrong default when "pos" is changed with popup_atcursor()v8.1.2273Bram Moolenaar
Problem: Wrong default when "pos" is changed with popup_atcursor(). Solution: Adjust the default line and col when "pos" is not the default value. (#5151)
2019-11-03patch 8.1.2250: CTRL-U and CTRL-D don't work in popup windowv8.1.2250Bram Moolenaar
Problem: CTRL-U and CTRL-D don't work in popup window. Solution: Initialize 'scroll'. Add "lastline" in popup_getpos(). (closes #5170)
2019-10-26Update runtime filesBram Moolenaar
2019-10-20patch 8.1.2193: popup_setoptions(popup_getoptions()) does not workv8.1.2193Bram Moolenaar
Problem: Popup_setoptions(popup_getoptions()) does not work. Solution: Also accept a list with three entries for "moved" and "mousemoved". (closes #5081)
2019-10-16Update runtime files.Bram Moolenaar
2019-09-25patch 8.1.2076: crash when trying to put a terminal in a popup windowv8.1.2076Bram Moolenaar
Problem: Crash when trying to put a terminal buffer in a popup window. Solution: Check for NULL buffer. Do not allow putting a terminal in a popup window.
2019-09-11Update runtime filesBram Moolenaar
2019-09-07Update runtime filesBram Moolenaar
2019-09-04patch 8.1.1982: more functions can be used as methodsv8.1.1982Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make popup functions usable as a method.
2019-09-03patch 8.1.1969: popup window filter is used in all modesv8.1.1969Bram Moolenaar
Problem: Popup window filter is used in all modes. Solution: Add the "filtermode" property.
2019-08-31Runtime files update.Bram Moolenaar
2019-08-25patch 8.1.1928: popup windows don't move with the text when making changesv8.1.1928Bram Moolenaar
Problem: Popup windows don't move with the text when making changes. Solution: Add the 'textprop" property to the popup window options, position the popup relative to a text property. (closes #4560) No tests yet.
2019-08-21patch 8.1.1905: cannot set all properties of the info popupv8.1.1905Bram Moolenaar
Problem: Cannot set all properties of the info popup. Solution: Add popup_findinfo(). Rename popup_getpreview() to popup_findpreview().
2019-08-08Update runtime files.Bram Moolenaar
2019-08-03patch 8.1.1799: cannot avoid mapping for a popup windowv8.1.1799Bram Moolenaar
Problem: Cannot avoid mapping for a popup window. Solution: Add the "mapping" property, default TRUE.
2019-08-01patch 8.1.1787: cannot resize a popup windowv8.1.1787Bram Moolenaar
Problem: Cannot resize a popup window. Solution: Allow for resizing by dragging the lower right corncer.
2019-07-31Update runtime files.Bram Moolenaar
2019-07-28patch 8.1.1770: cannot get the window ID of the popup preview windowv8.1.1770Bram Moolenaar
Problem: Cannot get the window ID of the popup preview window. Solution: Add popup_getpreview().
2019-07-19Update runtime filesBram Moolenaar
2019-07-18patch 8.1.1713: highlighting cursor line only works with popup_menu()v8.1.1713Bram Moolenaar
Problem: Highlighting cursor line only works with popup_menu(). Solution: Add the "cursorline" property. (Naruhiko Nishino, closes #4671)
2019-07-16patch 8.1.1705: using ~{} for a literal dict is not nicev8.1.1705Bram Moolenaar
Problem: Using ~{} for a literal dict is not nice. Solution: Use #{} instead.
2019-07-14patch 8.1.1692: using *{} for literal dict is not backwards compatiblev8.1.1692Bram Moolenaar
Problem: Using *{} for literal dict is not backwards compatible. (Yasuhiro Matsumoto) Solution: Use ~{} instead.
2019-07-14patch 8.1.1690: default padding for popup window menu is too muchv8.1.1690Bram Moolenaar
Problem: Default padding for popup window menu is too much. Solution: Only add padding left and right.
2019-07-13Update runtime filesBram Moolenaar
2019-07-12patch 8.1.1673: cannot easily find the popup window at a certain positionv8.1.1673Bram Moolenaar
Problem: Cannot easily find the popup window at a certain position. Solution: Add popup_locate().
2019-07-10patch 8.1.1659: popup window "mousemoved" values not correctv8.1.1659Bram Moolenaar
Problem: Popup window "mousemoved" values not correct. Solution: Convert text column to mouse column.
2019-07-07patch 8.1.1645: cannot use a popup window for a balloonv8.1.1645Bram Moolenaar
Problem: Cannot use a popup window for a balloon. Solution: Add popup_beval(). Add the "mousemoved" property. Add the screenpos() function.
2019-07-04patch 8.1.1628: popup window functions not in list of functionsv8.1.1628Bram Moolenaar
Problem: Popup window functions not in list of functions. Solution: Add popup window functins to the list of functions. Reorganise the popup window help.
2019-06-30patch 8.1.1612: cannot show an existing buffer in a popup windowv8.1.1612Bram Moolenaar
Problem: Cannot show an existing buffer in a popup window. Solution: Support buffer number argument in popup_create().
2019-06-30patch 8.1.1609: the user cannot easily close a popup windowv8.1.1609Bram Moolenaar
Problem: The user cannot easily close a popup window. Solution: Add the "close" property. (mostly by Masato Nishihata, closes #4601)
2019-06-29patch 8.1.1608: the evalfunc.c file is too bigv8.1.1607Bram Moolenaar
Problem: The evalfunc.c file is too big. Solution: Move sign functionality to sign.c.
2019-06-26patch 8.1.1597: cannot scroll a popup window with the mousev8.1.1597Bram Moolenaar
Problem: Cannot scroll a popup window with the mouse. Solution: If the popup window has a scrollbar let the mouse scroll wheel scroll the window.