summaryrefslogtreecommitdiffstats
path: root/src/testdir/dumps
AgeCommit message (Collapse)Author
2020-08-10patch 8.2.1415: closing a popup window with CTRL-C interrupts 'statusline'v8.2.1415Bram Moolenaar
Problem: Closing a popup window with CTRL-C interrupts 'statusline' if it calls a function. Solution: Reset got_int while redrawing. (closes #6675)
2020-08-10patch 8.2.1414: popupwindow missing last couple of linesv8.2.1414Bram Moolenaar
Problem: Popupwindow missing last couple of lines when cursor is in the first line. Solution: Compute the max height also when top aligned. (closes #6664)
2020-08-09patch 8.2.1406: popupwindow lacks scrollbar if no "maxheight" is usedv8.2.1406Bram Moolenaar
Problem: Popupwindow lacks scrollbar if no "maxheight" is used. Solution: Compute the max height depending on the position. (closes #6664)
2020-08-01patch 8.2.1345: Redraw error when using visual block and scrollv8.2.1345Bram Moolenaar
Problem: Redraw error when using visual block and scroll. Solution: Add check for w_topline. ( closes #6597)
2020-07-27patch 8.2.1307: popup window width does not include number of sign columnsv8.2.1307Bram Moolenaar
Problem: popup window width does not include number, fold of sign column width. Solution: Take number, fold and sign column with into account.
2020-07-18patch 8.2.1239: "maxwidth" in 'completepopup' not obeyedv8.2.1239Bram Moolenaar
Problem: "maxwidth" in 'completepopup' not obeyed. (Jay Sitter) Solution: Add separate field for value from option. (closes #6470)
2020-07-18patch 8.2.1237: changing 'completepopup' after opening popup has no effectv8.2.1237Bram Moolenaar
Problem: Changing 'completepopup' after opening a popup has no effect. (Jay Sitter) Solution: Close the popup when the options are changed. (closes #6471)
2020-07-15patch 8.2.1220: memory access error when dragging a popup windowv8.2.1220Bram Moolenaar
Problem: memory access error when dragging a popup window over a buffer with folding. Solution: Avoid going over the end of the cache. (closes #6438)
2020-07-12patch 8.2.1194: test failure because shell prompt differsv8.2.1194Bram Moolenaar
Problem: Test failure because shell prompt differs. Solution: Set the shell prompt.
2020-07-12patch 8.2.1193: terminal window not redrawn when dragging a popup windowv8.2.1193Bram Moolenaar
Problem: Terminal window not redrawn when dragging a popup window over it. Solution: Redraw terminal window. (fixes #6438)
2020-07-05patch 8.2.1137: Vim9: modifiers not cleared after compiling functionv8.2.1137Bram Moolenaar
Problem: Vim9: modifiers not cleared after compiling function. Solution: Clear command modifiers. (closes #6396)
2020-07-05patch 8.2.1128: the write message mentions characters, but it's bytesv8.2.1128Bram Moolenaar
Problem: The write message mentions characters, but it's actually bytes. Solution: Change "C" to "B" and "characters" to "bytes".
2020-06-18patch 8.2.1004: line numbers below filler lines not always updatedv8.2.1004Bram Moolenaar
Problem: Line numbers below filler lines not always updated. Solution: Don't break out of the win_line() loop too early. (Christian Brabandt, closes #6294, closes #6138)
2020-06-12patch 8.2.0966: 'shortmess' flag "n" not used in two placesv8.2.0966Bram Moolenaar
Problem: 'shortmess' flag "n" not used in two places. Solution: Make use of the "n" flag consistent. (Nick Jensen, closes #6245, closes #6244)
2020-06-10patch 8.2.0943: displaying ^M or ^J depends on current bufferv8.2.0943Bram Moolenaar
Problem: Displaying ^M or ^J depends on current buffer. Solution: Pass the displayed buffer to transchar(). (closes #6225)
2020-06-09patch 8.2.0936: some terminals misinterpret the code for getting cursor stylev8.2.0936Bram Moolenaar
Problem: Some terminals misinterpret the code for getting cursor style. Solution: Send a sequence to the terminal and check the result. (IWAMOTO Kouichi, closes #2126) Merged with current code.
2020-06-06patch 8.2.0911: crash when opening a buffer for the cmdline window failsv8.2.0911Bram Moolenaar
Problem: Crash when opening a buffer for the cmdline window fails. (Chris Barber) Solution: Check do_ecmd() succeeds. Reset got_int if "q" was used at the more prompt. (closes #6211)
2020-06-04patch 8.2.0902: using searchcount() in 'statusline' causes an errorv8.2.0902Bram Moolenaar
Problem: Using searchcount() in 'statusline' causes an error. Solution: Avoid saving/restoring the search patten recursively. (closes #6194)
2020-05-30patch 8.2.0845: text properties crossing lines not handled correctlyv8.2.0845Bram Moolenaar
Problem: Text properties crossing lines not handled correctly. Solution: When joining lines merge text properties if possible. (Axel Forsman, closes #5839, closes #5683)
2020-05-29patch 8.2.0840: search match count wrong when only match is in foldv8.2.0840Bram Moolenaar
Problem: Search match count wrong when only match is in fold. Solution: Update search stats when in a closed fold. (Christian Brabandt, closes #6160, closes #6152)
2020-04-25patch 8.2.0637: incsearch highlighting does not work for ":sort!"v8.2.0637Bram Moolenaar
Problem: Incsearch highlighting does not work for ":sort!". Solution: Skip over the exclamation point. (closes #5983)
2020-03-27patch 8.2.0462: previewwindow test fails on some systemsv8.2.0462Bram Moolenaar
Problem: Previewwindow test fails on some systems. (James McCoy) Solution: Wait a bit after sending the "o". (closes #5849)
2020-03-26patch 8.2.0455: cannot set the highlight group for a specific terminalv8.2.0455Bram Moolenaar
Problem: Cannot set the highlight group for a specific terminal. Solution: Add the "highlight" option to term_start(). (closes #5818)
2020-03-15patch 8.2.0390: terminal postponed scrollback test is flakyv8.2.0390Bram Moolenaar
Problem: Terminal postponed scrollback test is flaky. Solution: Add delay in between sending keys. Rename dump files.
2020-03-15patch 8.2.0382: some tests fail when run under valgrindv8.2.0382Bram Moolenaar
Problem: Some tests fail when run under valgrind. Solution: Increase timeouts.
2020-03-14patch 8.2.0380: tiny popup when creating a terminal popup without minwidthv8.2.0380Bram Moolenaar
Problem: Tiny popup when creating a terminal popup without minwidth. Solution: Use a default mininum size of 5 lines of 20 characters.
2020-02-29patch 8.2.0333: terminal in popup test is flakyv8.2.0333Bram Moolenaar
Problem: Terminal in popup test is flaky. Solution: Make sure redraw is done before opening the popup.
2020-02-28patch 8.2.0328: no redraw when leaving term-normal mode in popup terminalv8.2.0328Bram Moolenaar
Problem: No redraw when leaving terminal-normal mode in a terminal popup window. Solution: Redraw the popup window. (closes #5708)
2020-02-23patch 8.2.0305: relativenumber test fails on some systemsv8.2.0305Bram Moolenaar
Problem: Relativenumber test fails on some systems. (James McCoy) Solution: Clear the command line.
2020-02-21patch 8.2.0295: highlighting for :s wrong when using different separatorv8.2.0295Bram Moolenaar
Problem: Highlighting for :s wrong when using different separator. Solution: Use separat argument for search direction and separator. (Rob Pilling, closes #5665)
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-19patch 8.2.0281: two placed signs in the same line are not combinedv8.2.0281Bram Moolenaar
Problem: Two placed signs in the same line are not combined. E.g. in the terminal debugger a breakpoint and the PC cannot be both be displayed. Solution: Combine the sign column and line highlight attributes.
2020-02-14patch 8.2.0259: terminal in popup test sometimes failsv8.2.0259Bram Moolenaar
Problem: Terminal in popup test sometimes fails. Solution: Clear the command line.
2020-02-14patch 8.2.0258: modifyOtherKeys cannot be temporarily disabledv8.2.0258Bram Moolenaar
Problem: ModifyOtherKeys cannot be temporarily disabled. Solution: Add echoraw() with an example for modifyOtherKeys.
2020-02-14patch 8.2.0257: cannot recognize a terminal in a popup windowv8.2.0257Bram Moolenaar
Problem: Cannot recognize a terminal in a popup window. Solution: Add the win_gettype() function.
2020-02-08patch 8.2.0235: draw error when an empty group is removed from 'statusline'v8.2.0235Bram Moolenaar
Problem: Draw error when an empty group is removed from 'statusline'. Solution: Do not use highlighting from a removed group.
2020-02-05patch 8.2.0214: a popup window with a terminal can be made hiddenv8.2.0214Bram Moolenaar
Problem: A popup window with a terminal can be made hidden. Solution: Disallow hiding a terminal popup.
2020-02-01patch 8.2.0191: cannot put a terminal in a popup windowv8.2.0191Bram Moolenaar
Problem: Cannot put a terminal in a popup window. Solution: Allow opening a terminal in a popup window. It will always have keyboard focus until closed.
2020-01-30patch 8.2.0179: still a few places where range() does not workv8.2.0179Bram Moolenaar
Problem: Still a few places where range() does not work. Solution: Fix using range() causing problems.
2020-01-23patch 8.2.0142: possible to enter popup window with CTRL-W pv8.2.0142Bram Moolenaar
Problem: Possible to enter popup window with CTRL-W p. (John Devin) Solution: Check entered window is not a popup window. (closes #5515)
2020-01-19patch 8.2.0131: command line is not cleared when switching tabsv8.2.0131Bram Moolenaar
Problem: Command line is not cleared when switching tabs and the command line height differs. Solution: Set the "clear_cmdline" flag when needed. (Naruhiko Nishino, closes #5495)
2020-01-14patch 8.2.0118: crash when cycling to buffers involving popup windowv8.2.0118Bram Moolenaar
Problem: Crash when cycling to buffers involving popup window . Solution: Do not decrement buffer reference count.
2020-01-09patch 8.2.0108: when sign text is changed a manual redraw is neededv8.2.0108Bram Moolenaar
Problem: When sign text is changed a manual redraw is needed. (Pontus Lietzler) Solution: Redraw automatically. (closes #5455)
2020-01-06patch 8.2.0096: cannot create tiny popup window in last columnv8.2.0096Bram Moolenaar
Problem: Cannot create tiny popup window in last column. (Daniel Steinberg) Solution: Remove position limit. (closes #5447)
2019-12-15patch 8.2.0011: screen updating wrong when opeing preview windowv8.2.0011Bram Moolenaar
Problem: Screen updating wrong when opeing preview window. Solution: Redraw the window when the preview window opens.
2019-12-14patch 8.2.0007: popup menu positioned wrong with folding in two tabsv8.2.0007Bram Moolenaar
Problem: Popup menu positioned wrong with folding in two tabs. Solution: Update the cursor line height. (closes #5353)
2019-12-11patch 8.1.2419: with a long file name the hit-enter prompt appearsv8.1.2419Bram Moolenaar
Problem: With a long file name the hit-enter prompt appears. (J. Lewis Muir) Solution: When checking for text to wrap don't do this when outputing a CR.
2019-12-06patch 8.1.2399: info popup on top of cursor if it doesn't fitv8.1.2399Bram Moolenaar
Problem: Info popup on top of cursor if it doesn't fit. Solution: Hide the popup if it doesn't fit.
2019-12-04patch 8.1.2386: 'wincolor' is not used for 'listchars'v8.1.2386Bram Moolenaar
Problem: 'wincolor' is not used for 'listchars'. Solution: Combine the colors. (closes #5308)
2019-11-30patch 8.1.2362: cannot place signs in a popup windowv8.1.2362Bram Moolenaar
Problem: Cannot place signs in a popup window. (Maxim Kim) Solution: Use the group prefix "PopUp" to specify which signs should show up in a popup window. (closes #5277)