summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* patch 9.0.0873: using freed memory when executing mapclear at more promptv9.0.0873Bram Moolenaar2022-11-134-1/+63
| | | | | Problem: Using freed memory when executing mapclear at the more prompt. Solution: Do not clear mappings while listing them. (closes #11438)
* patch 9.0.0872: code is indented more than neededv9.0.0872Yegappan Lakshmanan2022-11-132-111/+116
| | | | | Problem: Code is indented more than needed. Solution: Return early. (Yegappan Lakshmanan, closes #11538)
* patch 9.0.0871: using freed memory when clearing augroup at more promptv9.0.0871Bram Moolenaar2022-11-133-5/+41
| | | | | Problem: Using freed memory when clearing augroup at more prompt. Solution: Delay clearing augroup until it's safe. (closes #11441)
* patch 9.0.0870: get E967 when using text property in quickfix windowv9.0.0870Bram Moolenaar2022-11-133-4/+35
| | | | | | | Problem: Get E967 when using text property in quickfix window. (Sergey Vlasov) Solution: Do not add an extra NUL and compute the text length correctly. (closes #11513)
* patch 9.0.0869: bogus error when string used after :elseifv9.0.0869Bram Moolenaar2022-11-123-1/+14
| | | | | | Problem: Bogus error when string used after :elseif. Solution: Do not consider a double quote the start of a comment. (closes #11534)
* patch 9.0.0868: MS-Windows: after Vim exits console resizing problemv9.0.0868Christopher Plewright2022-11-123-20/+38
| | | | | | | | Problem: MS-Windows: after Vim exits console resizing does not work properly. Solution: Restore screen behavior checks for various WT and VTP combinations. (Christopher Plewright, closes #11526, closes #11507)
* patch 9.0.0867: wildmenu redrawing code is spread outv9.0.0867Bram Moolenaar2022-11-125-276/+275
| | | | | Problem: Wildmenu redrawing code is spread out. Solution: Refactor to move code together. (closes #11528)
* patch 9.0.0866: no test for what patch 8.2.2207 fixesv9.0.0866zeertzjq2022-11-122-2/+8
| | | | | Problem: No test for what patch 8.2.2207 fixes. Solution: Add a test case. (closes #11531)
* patch 9.0.0865: duplicate arguments are not always detectedv9.0.0865Nir Lichtman2022-11-123-1/+33
| | | | | | Problem: Duplicate arguments are not always detected. Solution: Expand to full path before comparing arguments. (Nir Lichtman, closes #11505, closes #9402)
* patch 9.0.0864: crash when using "!!" without a previous shell commandv9.0.0864Bram Moolenaar2022-11-123-2/+36
| | | | | Problem: Crash when using "!!" without a previous shell command. Solution: Check "prevcmd" is not NULL. (closes #11487)
* patch 9.0.0863: col() and charcol() only work for the current windowv9.0.0863Yegappan Lakshmanan2022-11-127-15/+75
| | | | | | Problem: col() and charcol() only work for the current window. Solution: Add an optional winid argument. (Yegappan Lakshmanan, closes #11466, closes #11461)
* patch 9.0.0862: default value of 'endoffile' is wrongv9.0.0862Bram Moolenaar2022-11-124-2/+16
| | | | | Problem: Default value of 'endoffile' is wrong. Solution: The default must be 'noendoffile'.
* patch 9.0.0861: solution for "!!sort" in closed fold is not optimalv9.0.0861Bram Moolenaar2022-11-115-22/+115
| | | | | | Problem: Solution for "!!sort" in closed fold is not optimal. Solution: Use a different range instead of the subtle difference in handling a range with an offset. (issue #11487)
* patch 9.0.0860: MS-Windows: windres fails with clang 15.0.4v9.0.0860Bram Moolenaar2022-11-112-0/+6
| | | | | Problem: MS-Windows: windres fails with clang 15.0.4. Solution: Use llvm-windres. (John Marriott)
* patch 9.0.0859: compiler warning for unused variablev9.0.0859Bram Moolenaar2022-11-112-1/+4
| | | | | Problem: Compiler warning for unused variable. Solution: Add #ifdef.
* patch 9.0.0858: "!!sort" in a closed fold sorts too many linesv9.0.0858Bram Moolenaar2022-11-113-5/+58
| | | | | Problem: "!!sort" in a closed fold sorts too many lines. Solution: Round to end of fold after adding the line count. (closes #11487)
* patch 9.0.0857: selecting MSVC 2017 does not set $PLATFORMv9.0.0857K.Takata2022-11-102-1/+7
| | | | | Problem: Selecting MSVC 2017 does not set $PLATFORM. Solution: Use $VSCMD_ARG_TGT_ARCH. (Ken Takata, closes #11485)
* patch 9.0.0856: MS-Windows: executable not found when running testv9.0.0856Christopher Plewright2022-11-102-12/+28
| | | | | Problem: MS-Windows: executable not found when running individual test. Solution: Also look for vimd.exe. (Christopher Plewright, closes #11525)
* patch 9.0.0855: comment not located above the code it refers tov9.0.0855zeertzjq2022-11-102-2/+4
| | | | | Problem: Comment not located above the code it refers to. Solution: Move the comment. (closes #11527)
* patch 9.0.0854: no proper test for what 9.0.0846 fixesv9.0.0854zeertzjq2022-11-102-3/+19
| | | | | | Problem: No proper test for what 9.0.0846 fixes. Solution: Run test in a terminal so that the hit-enter prompt can show up. (closes #11523)
* patch 9.0.0853: terminal mouse test is still flaky on MacOS M1v9.0.0853Bram Moolenaar2022-11-102-8/+13
| | | | | Problem: Terminal mouse test is still flaky on MacOS M1. Solution: Also wait for the file to have some contents.
* patch 9.0.0852: crypt test is skipped if xxd is not foundv9.0.0852Bram Moolenaar2022-11-102-5/+16
| | | | | Problem: Crypt test is skipped if xxd is not found. Solution: Find xxd where it was supposed to be build.
* patch 9.0.0851: terminal mouse test is still flakyv9.0.0851Bram Moolenaar2022-11-102-1/+3
| | | | | Problem: Terminal mouse test is still flaky. Solution: Also use WaitForAssert().
* patch 9.0.0850: MS-Windows Terminal has unstable color controlv9.0.0850Christopher Plewright2022-11-093-80/+114
| | | | | | | Problem: MS-Windows Terminal has unstable color control. Solution: Do not try to read the old command prompt colortable, use modern VT sequences. (Christopher Plewright, closes #11450, closes #11373)
* patch 9.0.0849: terminal mouse test is a bit flakyv9.0.0849James McCoy2022-11-092-17/+24
| | | | | | Problem: Terminal mouse test is a bit flaky. Solution: Add WaitFor() calls. (James McCoy closes #11519) Tune wait times to reduce flakiness.
* Update runtime filesBram Moolenaar2022-11-0945-130/+235
|
* patch 9.0.0848: help item for --log argument is not aligned nicelyv9.0.0848K.Takata2022-11-092-1/+3
| | | | | Problem: Help item for --log argument is not aligned nicely. Solution: Add a Tab. (Ken Takata, closes #11521)
* patch 9.0.0847: CI: not totally clear what MS-Windows version is usedv9.0.0847K.Takata2022-11-092-2/+7
| | | | | Problem: CI: not totally clear what MS-Windows version is used. Solution: Show the Windows version. (Ken Takata, closes #11524)
* patch 9.0.0846: using assert_fails() may cause hit-enter promptv9.0.0846Bram Moolenaar2022-11-093-3/+11
| | | | | Problem: Using assert_fails() may cause hit-enter prompt. Solution: Set no_wait_return. (closes #11522)
* patch 9.0.0845: shell command with just space gives strange errorv9.0.0845shane.xb.qian2022-11-083-3/+54
| | | | | | Problem: Shell command with just space gives strange error. Solution: Skip white space at start of the argument. (Christian Brabandt, Shane-XB-Qian, closes #11515, closes #11495)
* patch 9.0.0844: handling 'statusline' errors is spread outv9.0.0844Luuk van Baal2022-11-077-91/+43
| | | | | | | Problem: Handling 'statusline' errors is spread out. Solution: Pass the option name to the lower levels so the option can be reset there when an error is encountered. (Luuk van Baal, closes #11467)
* patch 9.0.0843: VHS tape files are not recognizedv9.0.0843Carlos A Becker2022-11-073-0/+8
| | | | | Problem: VHS tape files are not recognized. Solution: Add a filetype pattern. (Carlos Alexandro Becker, closes #11452)
* patch 9.0.0842: Unicode range for Apple SF symbols is outdatedv9.0.0842Yee Cheng Chin2022-11-072-6/+23
| | | | | Problem: Unicode range for Apple SF symbols is outdated. Solution: Update to SF Symbols 4. (Yee Cheng Chin, closes #11474)
* patch 9.0.0841: deletebufline() does not always return 1 on failurev9.0.0841zeertzjq2022-11-063-24/+40
| | | | | Problem: deletebufline() does not always return 1 on failure. Solution: Refactor the code to make it work more predictable. (closes #11511)
* patch 9.0.0840: cannot change a slice of a const listv9.0.0840Bram Moolenaar2022-11-063-0/+26
| | | | | Problem: Cannot change a slice of a const list. (Takumi KAGIYAMA) Solution: Remove the const flag from the slice type. (closes #11490)
* patch 9.0.0839: test may fail depending on sequence of eventsv9.0.0839Yee Cheng Chin2022-11-062-1/+4
| | | | | | Problem: Test may fail depending on sequence of events. Solution: Accept error codes in either order. (Yee Cheng Chin, closes #11510)
* patch 9.0.0838: compiler warnings for unused variablesv9.0.0838Bram Moolenaar2022-11-064-8/+7
| | | | | Problem: Compiler warnings for unused variables. Solution: Addjust #ifdef and remove unused variables. (John Marriott)
* patch 9.0.0837: append() reports failure when not appending anythingv9.0.0837Bram Moolenaar2022-11-056-22/+37
| | | | | Problem: append() reports failure when not appending anything. Solution: Only report failure when appending something. (closes #11498)
* patch 9.0.0836: wrong error when using extend() with funcrefv9.0.0836zeertzjq2022-11-055-13/+29
| | | | | Problem: Wrong error when using extend() with funcref. Solution: Better check the variable type. (closes #11468, closes #11455)
* patch 9.0.0835: the window title is not redrawn when 'endoffile' changesv9.0.0835K.Takata2022-11-052-12/+8
| | | | | | Problem: The window title is not redrawn when 'endoffile' changes. Solution: redraw the window title when 'endoffile' is changed. (Ken Takata, closes #11488)
* patch 9.0.0834: warning for missing return typev9.0.0834Sam James2022-11-053-2/+4
| | | | | Problem: Warning for missing return type. Solution: Add "int". (San James, closes #11496)
* patch 9.0.0833: Mac: no +sound feature in huge buildv9.0.0833Yee Cheng Chin2022-11-052-1/+3
| | | | | Problem: Mac: no +sound feature in huge build. Solution: Enable +sound in Mac huge build. (closes #11497)
* patch 9.0.0832: deprecation warning causes build failurev9.0.0832Philip H2022-11-052-0/+7
| | | | | Problem: Deprecation warning causes build failure. Solution: Suppress deprecation warning. (closes #11503)
* patch 9.0.0831: compiler warning for redefining HAVE_DUPv9.0.0831ichizok2022-11-042-0/+5
| | | | | Problem: Compiler warning for redefining HAVE_DUP. Solution: Undefine HAVE_DUP if needed. (Ozaki Kiichi, closes #11484)
* patch 9.0.0830: compiling with Perl on Mac 12 failsv9.0.0830Philip H2022-11-042-0/+7
| | | | | Problem: Compiling with Perl on Mac 12 fails. Solution: Suppress infinite warnings. (closes #11499)
* patch 9.0.0829: wrong counts in macro commentv9.0.0829zeertzjq2022-11-042-2/+4
| | | | | Problem: Wrong counts in macro comment. Solution: Update the value counts. (closes #11480)
* patch 9.0.0828: various typosv9.0.0828dundargoc2022-11-0256-84/+86
| | | | | Problem: Various typos. Solution: Correct typos. (closes #11432)
* patch 9.0.0827: <Home> key in tmux doesn't work when 'term' set to "xterm"v9.0.0827Bram Moolenaar2022-11-012-2/+4
| | | | | | | Problem: The <Home> key in tmux doesn't work when 'term' is set to "xterm". (Dominique Pellé) Solution: Only use '@' in a termcap key entry for "1" when ";" follows. (closes #11429)
* patch 9.0.0826: if 'endofline' is set CTRL-Z may be written in a wrong placev9.0.0826K.Takata2022-11-016-19/+136
| | | | | | | Problem: If 'endofline' is set the CTRL-Z may be written in the wrong place. Solution: Write CTRL-Z at the end of the file. Update the help to explain the possibilities better. (Ken Takata, closes #11486)
* patch 9.0.0825: cannot drag an entry in the tabpage linev9.0.0825zeertzjq2022-11-015-30/+49
| | | | | | Problem: Cannot drag an entry in the tabpage line. Solution: Clear dragwin instead of got_click. (closes #11483, closes #11482)