Christopher Plewright
1140b51e83
patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
...
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 )
2022-11-12 18:46:05 +00:00
Bram Moolenaar
d6e91385f0
patch 9.0.0867: wildmenu redrawing code is spread out
...
Problem: Wildmenu redrawing code is spread out.
Solution: Refactor to move code together. (closes #11528 )
2022-11-12 17:44:13 +00:00
zeertzjq
f7570f2107
patch 9.0.0866: no test for what patch 8.2.2207 fixes
...
Problem: No test for what patch 8.2.2207 fixes.
Solution: Add a test case. (closes #11531 )
2022-11-12 17:30:25 +00:00
Nir Lichtman
b3052aa1b5
patch 9.0.0865: duplicate arguments are not always detected
...
Problem: Duplicate arguments are not always detected.
Solution: Expand to full path before comparing arguments. (Nir Lichtman,
closes #11505 , closes #9402 )
2022-11-12 17:00:31 +00:00
Bram Moolenaar
6600447c7b
patch 9.0.0864: crash when using "!!" without a previous shell command
...
Problem: Crash when using "!!" without a previous shell command.
Solution: Check "prevcmd" is not NULL. (closes #11487 )
2022-11-12 16:36:35 +00:00
Yegappan Lakshmanan
4c8d2f02b3
patch 9.0.0863: col() and charcol() only work for the current window
...
Problem: col() and charcol() only work for the current window.
Solution: Add an optional winid argument. (Yegappan Lakshmanan,
closes #11466 , closes #11461 )
2022-11-12 16:07:47 +00:00
Bram Moolenaar
0aad88f073
patch 9.0.0862: default value of 'endoffile' is wrong
...
Problem: Default value of 'endoffile' is wrong.
Solution: The default must be 'noendoffile'.
2022-11-12 11:54:26 +00:00
Bram Moolenaar
9954dc39ea
patch 9.0.0861: solution for "!!sort" in closed fold is not optimal
...
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 )
2022-11-11 22:58:36 +00:00
Bram Moolenaar
a20be06f97
patch 9.0.0860: MS-Windows: windres fails with clang 15.0.4
...
Problem: MS-Windows: windres fails with clang 15.0.4.
Solution: Use llvm-windres. (John Marriott)
2022-11-11 21:24:18 +00:00
Bram Moolenaar
fd3084b6e2
patch 9.0.0859: compiler warning for unused variable
...
Problem: Compiler warning for unused variable.
Solution: Add #ifdef.
2022-11-11 01:40:48 +00:00
Bram Moolenaar
f00112d558
patch 9.0.0858: "!!sort" in a closed fold sorts too many lines
...
Problem: "!!sort" in a closed fold sorts too many lines.
Solution: Round to end of fold after adding the line count. (closes #11487 )
2022-11-11 01:20:35 +00:00
K.Takata
37f1030fd6
patch 9.0.0857: selecting MSVC 2017 does not set $PLATFORM
...
Problem: Selecting MSVC 2017 does not set $PLATFORM.
Solution: Use $VSCMD_ARG_TGT_ARCH. (Ken Takata, closes #11485 )
2022-11-10 23:17:19 +00:00
Christopher Plewright
d55bfcaa9b
patch 9.0.0856: MS-Windows: executable not found when running test
...
Problem: MS-Windows: executable not found when running individual test.
Solution: Also look for vimd.exe. (Christopher Plewright, closes #11525 )
2022-11-10 18:21:30 +00:00
zeertzjq
09a93e3e66
patch 9.0.0855: comment not located above the code it refers to
...
Problem: Comment not located above the code it refers to.
Solution: Move the comment. (closes #11527 )
2022-11-10 17:05:28 +00:00
zeertzjq
7265851b2b
patch 9.0.0854: no proper test for what 9.0.0846 fixes
...
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 )
2022-11-10 13:21:34 +00:00
Bram Moolenaar
98aebcc2c6
patch 9.0.0853: terminal mouse test is still flaky on MacOS M1
...
Problem: Terminal mouse test is still flaky on MacOS M1.
Solution: Also wait for the file to have some contents.
2022-11-10 12:38:16 +00:00
Bram Moolenaar
90e66ec1e1
patch 9.0.0852: crypt test is skipped if xxd is not found
...
Problem: Crypt test is skipped if xxd is not found.
Solution: Find xxd where it was supposed to be build.
2022-11-10 00:25:05 +00:00
Bram Moolenaar
1d139a012e
patch 9.0.0851: terminal mouse test is still flaky
...
Problem: Terminal mouse test is still flaky.
Solution: Also use WaitForAssert().
2022-11-10 00:09:22 +00:00
Christopher Plewright
38804d6457
patch 9.0.0850: MS-Windows Terminal has unstable color control
...
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 )
2022-11-09 23:55:52 +00:00
James McCoy
157241e879
patch 9.0.0849: terminal mouse test is a bit flaky
...
Problem: Terminal mouse test is a bit flaky.
Solution: Add WaitFor() calls. (James McCoy closes #11519 ) Tune wait times
to reduce flakiness.
2022-11-09 23:29:14 +00:00
K.Takata
0fd7be7f95
patch 9.0.0848: help item for --log argument is not aligned nicely
...
Problem: Help item for --log argument is not aligned nicely.
Solution: Add a Tab. (Ken Takata, closes #11521 )
2022-11-09 16:29:24 +00:00
K.Takata
80613d64e6
patch 9.0.0847: CI: not totally clear what MS-Windows version is used
...
Problem: CI: not totally clear what MS-Windows version is used.
Solution: Show the Windows version. (Ken Takata, closes #11524 )
2022-11-09 16:12:47 +00:00
Bram Moolenaar
f220643c26
patch 9.0.0846: using assert_fails() may cause hit-enter prompt
...
Problem: Using assert_fails() may cause hit-enter prompt.
Solution: Set no_wait_return. (closes #11522 )
2022-11-09 00:44:30 +00:00
shane.xb.qian
4e7590ec00
patch 9.0.0845: shell command with just space gives strange error
...
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 )
2022-11-08 21:40:04 +00:00
Luuk van Baal
7b224fdf4a
patch 9.0.0844: handling 'statusline' errors is spread out
...
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 )
2022-11-07 12:16:51 +00:00
Carlos A Becker
1756f4b218
patch 9.0.0843: VHS tape files are not recognized
...
Problem: VHS tape files are not recognized.
Solution: Add a filetype pattern. (Carlos Alexandro Becker, closes #11452 )
2022-11-07 11:17:29 +00:00
Yee Cheng Chin
0e364c9fca
patch 9.0.0842: Unicode range for Apple SF symbols is outdated
...
Problem: Unicode range for Apple SF symbols is outdated.
Solution: Update to SF Symbols 4. (Yee Cheng Chin, closes #11474 )
2022-11-07 11:05:52 +00:00
zeertzjq
7af3ee2b83
patch 9.0.0841: deletebufline() does not always return 1 on failure
...
Problem: deletebufline() does not always return 1 on failure.
Solution: Refactor the code to make it work more predictable. (closes #11511 )
2022-11-06 22:26:05 +00:00
Bram Moolenaar
adbc08fd69
patch 9.0.0840: cannot change a slice of a const list
...
Problem: Cannot change a slice of a const list. (Takumi KAGIYAMA)
Solution: Remove the const flag from the slice type. (closes #11490 )
2022-11-06 18:27:17 +00:00
Yee Cheng Chin
69a8bb8dc1
patch 9.0.0839: test may fail depending on sequence of events
...
Problem: Test may fail depending on sequence of events.
Solution: Accept error codes in either order. (Yee Cheng Chin,
closes #11510 )
2022-11-06 12:25:47 +00:00
Bram Moolenaar
a25f718431
patch 9.0.0838: compiler warnings for unused variables
...
Problem: Compiler warnings for unused variables.
Solution: Addjust #ifdef and remove unused variables. (John Marriott)
2022-11-06 11:27:46 +00:00
Bram Moolenaar
cd9c8d400c
patch 9.0.0837: append() reports failure when not appending anything
...
Problem: append() reports failure when not appending anything.
Solution: Only report failure when appending something. (closes #11498 )
2022-11-05 23:46:43 +00:00
zeertzjq
91c75d18d9
patch 9.0.0836: wrong error when using extend() with funcref
...
Problem: Wrong error when using extend() with funcref.
Solution: Better check the variable type. (closes #11468 , closes #11455 )
2022-11-05 20:21:58 +00:00
K.Takata
845bbb72ed
patch 9.0.0835: the window title is not redrawn when 'endoffile' changes
...
Problem: The window title is not redrawn when 'endoffile' changes.
Solution: redraw the window title when 'endoffile' is changed. (Ken Takata,
closes #11488 )
2022-11-05 18:31:19 +00:00
Sam James
f8ea10677d
patch 9.0.0834: warning for missing return type
...
Problem: Warning for missing return type.
Solution: Add "int". (San James, closes #11496 )
2022-11-05 15:13:50 +00:00
Yee Cheng Chin
25b8420c2b
patch 9.0.0833: Mac: no +sound feature in huge build
...
Problem: Mac: no +sound feature in huge build.
Solution: Enable +sound in Mac huge build. (closes #11497 )
2022-11-05 14:23:14 +00:00
Philip H
5a5f17f9b3
patch 9.0.0832: deprecation warning causes build failure
...
Problem: Deprecation warning causes build failure.
Solution: Suppress deprecation warning. (closes #11503 )
2022-11-05 14:05:31 +00:00
ichizok
6c3d3e6904
patch 9.0.0831: compiler warning for redefining HAVE_DUP
...
Problem: Compiler warning for redefining HAVE_DUP.
Solution: Undefine HAVE_DUP if needed. (Ozaki Kiichi, closes #11484 )
2022-11-04 22:38:11 +00:00
Philip H
5375205761
patch 9.0.0830: compiling with Perl on Mac 12 fails
...
Problem: Compiling with Perl on Mac 12 fails.
Solution: Suppress infinite warnings. (closes #11499 )
2022-11-04 22:32:21 +00:00
zeertzjq
3d19c81a11
patch 9.0.0829: wrong counts in macro comment
...
Problem: Wrong counts in macro comment.
Solution: Update the value counts. (closes #11480 )
2022-11-04 21:58:36 +00:00
dundargoc
c57b5bcd22
patch 9.0.0828: various typos
...
Problem: Various typos.
Solution: Correct typos. (closes #11432 )
2022-11-02 13:30:51 +00:00
Bram Moolenaar
1410d1841b
patch 9.0.0827: <Home> key in tmux doesn't work when 'term' set to "xterm"
...
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 )
2022-11-01 22:04:40 +00:00
K.Takata
3af982196b
patch 9.0.0826: if 'endofline' is set CTRL-Z may be written in a wrong place
...
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 )
2022-11-01 20:36:19 +00:00
zeertzjq
8e0ccb6bc2
patch 9.0.0825: cannot drag an entry in the tabpage line
...
Problem: Cannot drag an entry in the tabpage line.
Solution: Clear dragwin instead of got_click. (closes #11483 ,
closes #11482 )
2022-11-01 18:35:27 +00:00
zeertzjq
873f41a018
patch 9.0.0824: crash when using win_move_separator() in other tab page
...
Problem: Crash when using win_move_separator() in other tab page.
Solution: Check for valid window in current tab page.
(closes #11479 , closes #11427 )
2022-11-01 11:44:43 +00:00
Bram Moolenaar
7a7db047dc
patch 9.0.0823: mouse drag test fails
...
Problem: Mouse drag test fails.
Solution: Only reset the mouse click flag when actually switching to another
tab page. Disable test that keeps failing.
2022-10-31 23:07:11 +00:00
Bram Moolenaar
8ab9ca93ee
patch 9.0.0822: crash when dragging the statusline with a mapping
...
Problem: Crash when dragging the statusline with a mapping.
Solution: Check for valid window pointer. (issue #11427 )
2022-10-31 13:06:26 +00:00
Bram Moolenaar
86e6717ace
patch 9.0.0820: memory leak with empty shell command
...
Problem: Memory leak with empty shell command.
Solution: Free the empty string.
2022-10-31 12:24:12 +00:00
Bram Moolenaar
03d6e6f42b
patch 9.0.0820: memory leak with empty shell command
...
Problem: Memory leak with empty shell command.
Solution: Free the empty string.
2022-10-29 21:53:08 +01:00
Bram Moolenaar
1577537f10
patch 9.0.0819
2022-10-29 20:01:52 +01:00