Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | patch 8.2.3614: zindex of popup windows not used when redrawing popup menuv8.2.3614 | Bakudankun | 2021-11-17 | 1 | -2/+2 |
| | | | | | | Problem: zindex of popup windows not used when redrawing popup menu. Solution: Check the zindex when redrawing the popup menu. (closes #9129, closes #9089) | ||||
* | patch 8.2.2815: status line flickers when redrawing popup menu infov8.2.2815 | Bram Moolenaar | 2021-04-27 | 1 | -0/+9 |
| | | | | | | Problem: Status line flickers when redrawing popup menu info. Solution: Do not redraw the status line when the focus is in the popup window. (issue #8144) | ||||
* | patch 8.2.2803: flicker when the popup menu has an info popupv8.2.2803 | Bram Moolenaar | 2021-04-23 | 1 | -10/+28 |
| | | | | | | Problem: Flicker when the popup menu has an info popup. Solution: Avoid drawing over the popup when it's going to be redrawn in the same position. (closes #8131) Also avoid redrawing the scrollbar. | ||||
* | patch 8.2.2207: illegal memory access if popup menu items are changedv8.2.2207 | Bram Moolenaar | 2020-12-24 | 1 | -2/+15 |
| | | | | | | Problem: Illegal memory access if popup menu items are changed while the menu is visible. (Tomáš Janoušek) Solution: Make a copy of the text. (closes #7537) | ||||
* | patch 8.2.2123: after using a complete popup the buffer is listedv8.2.2123 | Bram Moolenaar | 2020-12-09 | 1 | -0/+1 |
| | | | | | | Problem: After using a complete popup the buffer is listed. (Boris Staletic) Solution: Make the buffer unlisted. | ||||
* | patch 8.2.1995: the popup menu can cause too much redrawingv8.2.1995 | Bram Moolenaar | 2020-11-16 | 1 | -5/+19 |
| | | | | | | Problem: The popup menu can cause too much redrawing. Solution: Reduce the length of the displayed text. (Yasuhiro Matsumoto, closes #7306) | ||||
* | patch 8.2.1989: info popup triggers WinEnter and WinLeave autocommandsv8.2.1989 | Bram Moolenaar | 2020-11-15 | 1 | -0/+8 |
| | | | | | Problem: Info popup triggers WinEnter and WinLeave autocommands. Solution: Suppress autocommands for the info popup. (closes #7296) | ||||
* | patch 8.2.1239: "maxwidth" in 'completepopup' not obeyedv8.2.1239 | Bram Moolenaar | 2020-07-18 | 1 | -1/+8 |
| | | | | | Problem: "maxwidth" in 'completepopup' not obeyed. (Jay Sitter) Solution: Add separate field for value from option. (closes #6470) | ||||
* | patch 8.2.0853: ml_delete() often called with FALSE argumentv8.2.0853 | Bram Moolenaar | 2020-05-30 | 1 | -2/+2 |
| | | | | | Problem: ml_delete() often called with FALSE argument. Solution: Use ml_delete_flags(x, ML_DEL_MESSAGE) when argument is TRUE. | ||||
* | patch 8.2.0751: Vim9: performance can be improvedv8.2.0751 | Bram Moolenaar | 2020-05-13 | 1 | -1/+1 |
| | | | | | | Problem: Vim9: performance can be improved. Solution: Don't call break. Inline check for list materialize. Make an inline version of ga_grow(). | ||||
* | patch 8.2.0678: rare crash for popup menuv8.2.0678 | Bram Moolenaar | 2020-05-02 | 1 | -3/+6 |
| | | | | | Problem: Rare crash for popup menu. Solution: Check for NULL pointer. (Nobuhiro Takasaki, closes #6027) | ||||
* | patch 8.2.0559: clearing a struct is verbosev8.2.0559 | Bram Moolenaar | 2020-04-12 | 1 | -1/+1 |
| | | | | | Problem: Clearing a struct is verbose. Solution: Define and use CLEAR_FIELD() and CLEAR_POINTER(). | ||||
* | patch 8.2.0523: loops are repeatedv8.2.0523 | Bram Moolenaar | 2020-04-06 | 1 | -3/+3 |
| | | | | | Problem: Loops are repeated. Solution: Use FOR_ALL_ macros. (Yegappan Lakshmanan, closes #5882) | ||||
* | patch 8.2.0393: Coverity warns for not using return valuev8.2.0393 | Bram Moolenaar | 2020-03-16 | 1 | -6/+7 |
| | | | | | Problem: Coverity warns for not using return value. Solution: Add (void). | ||||
* | patch 8.2.0159: non-materialized range() list causes problemsv8.2.0159 | Bram Moolenaar | 2020-01-27 | 1 | -0/+1 |
| | | | | | Problem: Non-materialized range() list causes problems. (Fujiwara Takuya) Solution: Materialize the list where needed. | ||||
* | patch 8.2.0111: VAR_SPECIAL is also used for booleansv8.2.0111 | Bram Moolenaar | 2020-01-11 | 1 | -1/+1 |
| | | | | | Problem: VAR_SPECIAL is also used for booleans. Solution: Add VAR_BOOL for better type checking. | ||||
* | patch 8.2.0011: screen updating wrong when opeing preview windowv8.2.0011 | Bram Moolenaar | 2019-12-15 | 1 | -4/+5 |
| | | | | | Problem: Screen updating wrong when opeing preview window. Solution: Redraw the window when the preview window opens. | ||||
* | patch 8.2.0007: popup menu positioned wrong with folding in two tabsv8.2.0007 | Bram Moolenaar | 2019-12-14 | 1 | -0/+1 |
| | | | | | Problem: Popup menu positioned wrong with folding in two tabs. Solution: Update the cursor line height. (closes #5353) | ||||
* | patch 8.1.2415: popup menu flickers if an info popup is usedv8.1.2415 | Bram Moolenaar | 2019-12-10 | 1 | -13/+27 |
| | | | | | Problem: Popup menu flickers if an info popup is used. (Nick Spoons) Solution: Set the pum_skip_redraw flag. | ||||
* | patch 8.1.2399: info popup on top of cursor if it doesn't fitv8.1.2399 | Bram Moolenaar | 2019-12-06 | 1 | -1/+7 |
| | | | | | Problem: Info popup on top of cursor if it doesn't fit. Solution: Hide the popup if it doesn't fit. | ||||
* | patch 8.1.2394: using old C style commentsv8.1.2394 | Bram Moolenaar | 2019-12-05 | 1 | -91/+91 |
| | | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate. | ||||
* | patch 8.1.2373: cannot build with +popupwin but without +quickfixv8.1.2373 | Bram Moolenaar | 2019-12-01 | 1 | -2/+2 |
| | | | | | Problem: Cannot build with +popupwin but without +quickfix. (John Marriott) Solution: Adjust #ifdefs. | ||||
* | patch 8.1.2371: FEAT_TEXT_PROP is a confusing namev8.1.2371 | Bram Moolenaar | 2019-11-30 | 1 | -14/+14 |
| | | | | | Problem: FEAT_TEXT_PROP is a confusing name. Solution: Use FEAT_PROP_POPUP. (Naruhiko Nishino, closes #5291) | ||||
* | patch 8.1.2369: cannot build with quickfix and without text propertiesv8.1.2369 | Bram Moolenaar | 2019-11-30 | 1 | -1/+1 |
| | | | | | Problem: Cannot build with quickfix and without text properties. Solution: Fix typo. (Naruhiko Nishino) | ||||
* | patch 8.1.2325: crash when using balloon with empty linev8.1.2325 | Bram Moolenaar | 2019-11-21 | 1 | -31/+35 |
| | | | | | Problem: Crash when using balloon with empty line. Solution: Handle empty lines. (Markus Braun) | ||||
* | patch 8.1.2324: with of scrollbar in popup menu not taken into accountv8.1.2324 | Bram Moolenaar | 2019-11-21 | 1 | -2/+2 |
| | | | | | Problem: With of scrollbar in popup menu not taken into account. Solution: Add the width of the scrollbar. | ||||
* | patch 8.1.2274: newlines in 'balloonexpr' result only work in the GUIv8.1.2274 | Bram Moolenaar | 2019-11-09 | 1 | -1/+5 |
| | | | | | Problem: Newlines in 'balloonexpr' result only work in the GUI. Solution: Also recognize newlines in the terminal. (closes #5193) | ||||
* | patch 8.1.2192: cannot easily fill the info popup asynchronouslyv8.1.2192 | Bram Moolenaar | 2019-10-20 | 1 | -18/+34 |
| | | | | | Problem: Cannot easily fill the info popup asynchronously. Solution: Add the "popuphidden" value to 'completeopt'. (closes #4924) | ||||
* | patch 8.1.2120: some MB_ macros are more complicated than necessaryv8.1.2120 | Bram Moolenaar | 2019-10-06 | 1 | -2/+2 |
| | | | | | | Problem: Some MB_ macros are more complicated than necessary. (Dominique Pelle) Solution: Simplify the macros. Expand inline. | ||||
* | patch 8.1.2082: some files have a weird name to fit in 8.3 charactersv8.1.2082 | Bram Moolenaar | 2019-09-27 | 1 | -0/+1489 |
| | | | | | Problem: Some files have a weird name to fit in 8.3 characters. Solution: Use a nicer names. | ||||
* | updated for version 7.0bv7.0b | Bram Moolenaar | 2006-03-24 | 1 | -565/+0 |
| | |||||
* | updated for version 7.0226 | Bram Moolenaar | 2006-03-16 | 1 | -4/+11 |
| | |||||
* | updated for version 7.0225 | Bram Moolenaar | 2006-03-15 | 1 | -9/+27 |
| | |||||
* | updated for version 7.0224 | Bram Moolenaar | 2006-03-14 | 1 | -0/+1 |
| | |||||
* | updated for version 7.0223 | Bram Moolenaar | 2006-03-13 | 1 | -1/+6 |
| | |||||
* | updated for version 7.0222 | Bram Moolenaar | 2006-03-12 | 1 | -2/+2 |
| | |||||
* | updated for version 7.0221 | Bram Moolenaar | 2006-03-11 | 1 | -45/+216 |
| | |||||
* | updated for version 7.0217v7.0217 | Bram Moolenaar | 2006-03-07 | 1 | -3/+4 |
| | |||||
* | updated for version 7.0194v7.0194 | Bram Moolenaar | 2006-02-08 | 1 | -29/+58 |
| | |||||
* | updated for version 7.0193 | Bram Moolenaar | 2006-02-04 | 1 | -1/+1 |
| | |||||
* | updated for version 7.0186v7.0186 | Bram Moolenaar | 2006-01-23 | 1 | -4/+10 |
| | |||||
* | updated for version 7.0173v7.0173 | Bram Moolenaar | 2005-12-18 | 1 | -6/+32 |
| | |||||
* | updated for version 7.0154 | Bram Moolenaar | 2005-10-04 | 1 | -0/+301 |