summaryrefslogtreecommitdiffstats
path: root/runtime/doc/popup.txt
AgeCommit message (Collapse)Author
2022-06-28release version 9.0v9.0.0000Bram Moolenaar
Problem: About time to release Vim 9.0. Solution: Update the version number everywhere.
2022-06-17Update runtime filesBram Moolenaar
2022-06-06Update runtime files.Bram Moolenaar
2022-06-03Update runtime filesBram Moolenaar
2022-04-08Update runtime filesBram Moolenaar
2022-04-04patch 8.2.4685: when a swap file is found for a popup there is no dialogv8.2.4685Bram Moolenaar
Problem: When a swap file is found for a popup there is no dialog and the buffer is loaded anyway. Solution: Silently load the buffer read-only. (closes #10073)
2022-01-08Update runtime filesBram Moolenaar
2021-12-05Update runtime filesBram Moolenaar
2021-11-29patch 8.2.3697: cannot drag a popup without a borderv8.2.3697Bram Moolenaar
Problem: Cannot drag a popup without a border. Solution: Add the "dragall" option. (closes #9218)
2021-08-29Update runtime filesBram Moolenaar
2021-08-14Update runtime filesBram Moolenaar
2021-02-27Update runtime files.Bram Moolenaar
2021-02-13Update runtime filesBram Moolenaar
2021-01-25Update runtime files.Bram Moolenaar
2021-01-18Update runtime files.Bram Moolenaar
2021-01-04patch 8.2.2296: cannot use CTRL-N and CTRL-P in a popup menuv8.2.2296Bram Moolenaar
Problem: Cannot use CTRL-N and CTRL-P in a popup menu. Solution: Use CTRL-N like <Down> and CTRL-P like <Up>. (closes #7614)
2020-11-21Update runtime filesBram Moolenaar
2020-10-26Update runtime files.Bram Moolenaar
2020-09-28patch 8.2.1769: popup filter interferes with using :normal to move the cursorv8.2.1769Bram Moolenaar
Problem: A popup filter interferes with using :normal to move the cursor in a popup. Solution: Do not invoke the filter when ex_normal_busy is set.
2020-09-28Update runtime files.Bram Moolenaar
2020-09-19Update runtime files.Bram Moolenaar
2020-08-07Update runtime files.Bram Moolenaar
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.