summaryrefslogtreecommitdiff
path: root/runtime/doc/popup.txt
Commit message (Collapse)AuthorAgeFilesLines
* Update runtime filesBram Moolenaar2021-02-131-2/+3
|
* Update runtime files.Bram Moolenaar2021-01-251-1/+1
|
* Update runtime files.Bram Moolenaar2021-01-181-2/+0
|
* patch 8.2.2296: cannot use CTRL-N and CTRL-P in a popup menuv8.2.2296Bram Moolenaar2021-01-041-2/+2
| | | | | 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)
* Update runtime filesBram Moolenaar2020-11-211-2/+2
|
* Update runtime files.Bram Moolenaar2020-10-261-1/+2
|
* patch 8.2.1769: popup filter interferes with using :normal to move the cursorv8.2.1769Bram Moolenaar2020-09-281-1/+6
| | | | | | 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.
* Update runtime files.Bram Moolenaar2020-09-281-2/+2
|
* Update runtime files.Bram Moolenaar2020-09-191-1/+7
|
* Update runtime files.Bram Moolenaar2020-08-071-4/+4
|
* Update runtime filesBram Moolenaar2020-05-261-1/+1
|
* patch 8.2.0791: a second popup window with terminal causes troublev8.2.0791Bram Moolenaar2020-05-181-1/+1
| | | | | | 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.
* patch 8.2.0748: cannot get a list of all popupsv8.2.0748Bram Moolenaar2020-05-131-0/+5
| | | | | Problem: Cannot get a list of all popups. Solution: Add popup_list(). Use it in the test runner.
* patch 8.2.0747: cannot forcefully close all popupsv8.2.0747Bram Moolenaar2020-05-131-1/+8
| | | | | | 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.
* Update runtime filesBram Moolenaar2020-05-121-1/+2
|
* Update runtime filesBram Moolenaar2020-04-201-5/+7
|
* Update runtime filesBram Moolenaar2020-03-271-3/+7
|
* Update runtime filesBram Moolenaar2020-03-191-2/+5
|
* patch 8.2.0286: cannot use popup_close() for a terminal popupv8.2.0286Bram Moolenaar2020-02-201-1/+3
| | | | | Problem: Cannot use popup_close() for a terminal popup. Solution: Allow using popup_close(). (closes #5666)
* Update runtime files.Bram Moolenaar2020-02-151-1/+2
|
* Update runtime files.Bram Moolenaar2020-02-041-1/+18
|
* Vim 8.2 releasev8.2.0000v8.2.0Bram Moolenaar2019-12-121-1/+1
|
* Update a few runtime filesBram Moolenaar2019-12-031-1/+1
|
* Update runtime files.Bram Moolenaar2019-11-301-2/+2
|
* Update runtime files.Bram Moolenaar2019-11-171-2/+2
|
* patch 8.1.2304: cannot get the mouse position when getting a mouse clickv8.1.2304Bram Moolenaar2019-11-161-4/+2
| | | | | Problem: Cannot get the mouse position when getting a mouse click. Solution: Add getmousepos().
* Update runtime filesBram Moolenaar2019-11-131-1/+1
|
* patch 8.1.2292: v:mouse_winid not set on click in popup windowv8.1.2292Bram Moolenaar2019-11-111-2/+3
| | | | | Problem: v:mouse_winid not set on click in popup window. Solution: Set v:mouse_winid. (closes #5171)
* patch 8.1.2273: wrong default when "pos" is changed with popup_atcursor()v8.1.2273Bram Moolenaar2019-11-091-5/+15
| | | | | | 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)
* patch 8.1.2250: CTRL-U and CTRL-D don't work in popup windowv8.1.2250Bram Moolenaar2019-11-031-1/+2
| | | | | | Problem: CTRL-U and CTRL-D don't work in popup window. Solution: Initialize 'scroll'. Add "lastline" in popup_getpos(). (closes #5170)
* Update runtime filesBram Moolenaar2019-10-261-4/+4
|
* patch 8.1.2193: popup_setoptions(popup_getoptions()) does not workv8.1.2193Bram Moolenaar2019-10-201-0/+7
| | | | | | Problem: Popup_setoptions(popup_getoptions()) does not work. Solution: Also accept a list with three entries for "moved" and "mousemoved". (closes #5081)
* Update runtime files.Bram Moolenaar2019-10-161-6/+6
|
* patch 8.1.2076: crash when trying to put a terminal in a popup windowv8.1.2076Bram Moolenaar2019-09-251-4/+6
| | | | | | 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.
* Update runtime filesBram Moolenaar2019-09-111-2/+2
|
* Update runtime filesBram Moolenaar2019-09-071-1/+1
|
* patch 8.1.1982: more functions can be used as methodsv8.1.1982Bram Moolenaar2019-09-041-1/+29
| | | | | Problem: More functions can be used as methods. Solution: Make popup functions usable as a method.
* patch 8.1.1969: popup window filter is used in all modesv8.1.1969Bram Moolenaar2019-09-031-9/+28
| | | | | Problem: Popup window filter is used in all modes. Solution: Add the "filtermode" property.
* Runtime files update.Bram Moolenaar2019-08-311-2/+10
|
* patch 8.1.1928: popup windows don't move with the text when making changesv8.1.1928Bram Moolenaar2019-08-251-0/+82
| | | | | | | 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.
* patch 8.1.1905: cannot set all properties of the info popupv8.1.1905Bram Moolenaar2019-08-211-4/+14
| | | | | | Problem: Cannot set all properties of the info popup. Solution: Add popup_findinfo(). Rename popup_getpreview() to popup_findpreview().
* Update runtime files.Bram Moolenaar2019-08-081-1/+1
|
* patch 8.1.1799: cannot avoid mapping for a popup windowv8.1.1799Bram Moolenaar2019-08-031-4/+25
| | | | | Problem: Cannot avoid mapping for a popup window. Solution: Add the "mapping" property, default TRUE.
* patch 8.1.1787: cannot resize a popup windowv8.1.1787Bram Moolenaar2019-08-011-1/+5
| | | | | Problem: Cannot resize a popup window. Solution: Allow for resizing by dragging the lower right corncer.
* Update runtime files.Bram Moolenaar2019-07-311-4/+4
|
* patch 8.1.1770: cannot get the window ID of the popup preview windowv8.1.1770Bram Moolenaar2019-07-281-1/+5
| | | | | Problem: Cannot get the window ID of the popup preview window. Solution: Add popup_getpreview().
* Update runtime filesBram Moolenaar2019-07-191-4/+4
|
* patch 8.1.1713: highlighting cursor line only works with popup_menu()v8.1.1713Bram Moolenaar2019-07-181-5/+12
| | | | | Problem: Highlighting cursor line only works with popup_menu(). Solution: Add the "cursorline" property. (Naruhiko Nishino, closes #4671)
* patch 8.1.1705: using ~{} for a literal dict is not nicev8.1.1705Bram Moolenaar2019-07-161-10/+10
| | | | | Problem: Using ~{} for a literal dict is not nice. Solution: Use #{} instead.
* patch 8.1.1692: using *{} for literal dict is not backwards compatiblev8.1.1692Bram Moolenaar2019-07-141-10/+10
| | | | | | Problem: Using *{} for literal dict is not backwards compatible. (Yasuhiro Matsumoto) Solution: Use ~{} instead.