Bram Moolenaar
be9fc5b60c
patch 9.0.0428: autocmd test uses common file name
...
Problem: Autocmd test uses common file name.
Solution: Use unique name to reduce flakiness.
v9.0.0428
2022-09-09 17:09:35 +01:00
Rodrigo Aguilera
8995c4cd4e
patch 9.0.0427: Drupal theme files are not recognized
...
Problem: Drupal theme files are not recognized.
Solution: Use php filetype for Drupl theme files. Remove trailing spaces.
(Rodrigo Aguilera, closes #11096 )
v9.0.0427
2022-09-09 16:10:26 +01:00
Bram Moolenaar
65258d36dd
patch 9.0.0426: failed flaky tests reports only start time
...
Problem: Failed flaky tests reports only start time.
Solution: Also report the end time.
v9.0.0426
2022-09-09 15:09:59 +01:00
Bram Moolenaar
ae04a6049b
patch 9.0.0425: autocmd test is a bit flaky on MS-Windows
...
Problem: Autocmd test is a bit flaky on MS-Windows.
Solution: Add a bit more sleeping. (Ken Takata, closes #11095 )
v9.0.0425
2022-09-09 15:08:10 +01:00
ObserverOfTime
7d56cfc861
patch 9.0.0424: gitattributes files are not recognized
...
Problem: gitattributes files are not recognized.
Solution: Add patterns to match gitattributes files. (closes #11085 )
v9.0.0424
2022-09-09 14:11:41 +01:00
Bram Moolenaar
9132426334
patch 9.0.0423: "for" and "while" not recognized after :vim9cmd and :legacy
...
Problem: "for" and "while" not recognized after :vim9cmd and :legacy.
(Emanuele Torre)
Solution: Recognize all the command modifiers. (closes #11087 )
Add a test to check the list of modifiers.
v9.0.0423
2022-09-09 13:27:59 +01:00
Yegappan Lakshmanan
0dc2fd307f
patch 9.0.0422: not enough testing of the :all command
...
Problem: Not enough testing of the :all command.
Solution: Add more testing. (Yegappan Lakshmanan, closes #11091 )
v9.0.0422
2022-09-09 11:27:59 +01:00
K.Takata
5bc13453b2
patch 9.0.0421: MS-Windows makefiles are inconsistently named
...
Problem: MS-Windows makefiles are inconsistently named.
Solution: Use consistent names. (Ken Takata, closes #11088 )
v9.0.0421
2022-09-09 10:52:47 +01:00
Bram Moolenaar
c572ad508f
patch 9.0.0420: function went missing
...
Problem: Function went missing.
Solution: Add the function back.
v9.0.0420
2022-09-08 20:49:22 +01:00
Bram Moolenaar
169003289f
patch 9.0.0419: the :defer command does not check the function arguments
...
Problem: The :defer command does not check the function argument count and
types.
Solution: Check the function arguments when adding a deferred function.
v9.0.0419
2022-09-08 19:51:45 +01:00
Bram Moolenaar
45bbaef038
patch 9.0.0418: manually deleting temp test files
...
Problem: Manually deleting temp test files.
Solution: Use the 'D' flag of writefile() and mkdir().
v9.0.0418
2022-09-08 16:39:22 +01:00
=?UTF-8?q?Cezary=20Dro=C5=BCak?=
2a4c885d54
patch 9.0.0417: Jsonnet files are not recognized
...
Problem: Jsonnet files are not recognized.
Solution: Add a pattern for Jsonnet files. (Cezary Drożak, closes #11073 ,
closes #11081 )
v9.0.0417
2022-09-08 14:41:48 +01:00
Bram Moolenaar
58a3cae3eb
patch 9.0.0416: ml_get error when appending lines in popup window
...
Problem: ml_get error when appending lines in popup window.
Solution: Only update w_topline when w_buffer matches curbuf.
(closes #11074 )
v9.0.0416
2022-09-08 13:43:10 +01:00
K.Takata
0500e87eba
patch 9.0.0415: on MS-Windows some tests are flaky
...
Problem: On MS-Windows some tests are flaky.
Solution: Add sleeps, disable swapfile, mark test as flaky. (Ken Takata,
closes #11082 )
v9.0.0415
2022-09-08 12:28:02 +01:00
Bram Moolenaar
753aead960
patch 9.0.0414: matchstr() still does not match column offset
...
Problem: matchstr() still does not match column offset when done after a
text search.
Solution: Only use the line number for a multi-line search. Fix the test.
(closes #10938 )
v9.0.0414
2022-09-08 12:17:06 +01:00
K.Takata
b0d12e63e8
patch 9.0.0413: ASAN reports a memory leak
...
Problem: ASAN reports a memory leak.
Solution: Free the string received from the server. (Ken Takata,
closes #11080 )
v9.0.0413
2022-09-08 10:55:38 +01:00
Bram Moolenaar
e5a420fb33
patch 9.0.0412: compiler warning for unused argument
...
Problem: Compiler warning for unused argument.
Solution: Add UNUSED.
v9.0.0412
2022-09-07 21:46:56 +01:00
Bram Moolenaar
6f14da15ac
patch 9.0.0411: only created files can be cleaned up with one call
...
Problem: Only created files can be cleaned up with one call.
Solution: Add flags to mkdir() to delete with a deferred function.
Expand the writefile() name to a full path to handle changing
directory.
v9.0.0411
2022-09-07 21:30:44 +01:00
Bram Moolenaar
d7633114af
patch 9.0.0410: struct member cts_lnum is unused
...
Problem: Struct member cts_lnum is unused.
Solution: Delete it.
v9.0.0410
2022-09-07 20:01:17 +01:00
ii14
7c7e1e9b98
patch 9.0.0409: #{g:x} was seen as a curly-braces expression
...
Problem: #{g:x} was seen as a curly-braces expression.
Solution: Do never see #{} as a curly-braces expression. (closes #11075 )
v9.0.0409
2022-09-07 19:40:17 +01:00
K.Takata
fef38d86a1
patch 9.0.0408: GUI test sometimes fails on MS-Windows
...
Problem: GUI test sometimes fails on MS-Windows.
Solution: Make sure Vim is the foreground window. (Ken Takata, closes #11077 )
v9.0.0408
2022-09-07 19:03:42 +01:00
Bram Moolenaar
75a115e8d6
patch 9.0.0407: matchstr() does match column offset
...
Problem: matchstr() does match column offset. (Yasuhiro Matsumoto)
Solution: Accept line number zero. (closes #10938 )
v9.0.0407
2022-09-07 18:21:24 +01:00
Bram Moolenaar
9667b2c888
patch 9.0.0406: deferred functions not invoked when partial func exits
...
Problem: Deferred functions not invoked when partial func exits.
Solution: Create a funccall_T when calling a :def function.
v9.0.0406
2022-09-07 17:28:09 +01:00
Bram Moolenaar
c9c967da09
patch 9.0.0405: arguments in a partial not used by a :def function
...
Problem: Arguments in a partial not used by a :def function.
Solution: Put the partial arguments on the stack.
v9.0.0405
2022-09-07 16:48:46 +01:00
Bram Moolenaar
1540d334a0
patch 9.0.0404: crash when passing invalid arguments to assert_fails()
...
Problem: Crash when passing invalid arguments to assert_fails().
Solution: Check for NULL string.
v9.0.0404
2022-09-07 15:20:26 +01:00
Luuk van Baal
fd7e60a33d
patch 9.0.0403: 'equalalways' may be off when 'laststatus' is zero
...
Problem: 'equalalways' may be off when 'laststatus' is zero.
Solution: call last_status() before win_equal(). (Luuk van Baal,
closes #11070 )
v9.0.0403
2022-09-07 14:42:49 +01:00
Brett Holman
bb6c4073e7
patch 9.0.0402: javascript module files are not recoginzed
...
Problem: Javascript module files are not recoginzed.
Solution: Recognize "*.jsm" files as Javascript. (Brett Holman,
closes #11069 )
v9.0.0402
2022-09-07 14:13:31 +01:00
Philip H
bd01f476ea
patch 9.0.0401: CI uses older clang version
...
Problem: CI uses older clang version.
Solution: Switch from clang 14 to 15. (closes #11066 )
v9.0.0401
2022-09-07 13:30:19 +01:00
K.Takata
e68f1348f2
patch 9.0.0400: GUI test sometimes hangs on CI
...
Problem: GUI test sometimes hangs on CI.
Solution: Delete a test file explicitly. (Ken Takata, closes #11072 )
v9.0.0400
2022-09-07 13:01:11 +01:00
Bram Moolenaar
98aff658d5
patch 9.0.0399: using :defer in expression funcref not tested
...
Problem: Using :defer in expression funcref not tested.
Solution: Add a test. Fix uncovered problems.
v9.0.0399
2022-09-06 21:02:35 +01:00
Bram Moolenaar
ca16c60f33
patch 9.0.0398: members of funccall_T are inconsistently named
...
Problem: Members of funccall_T are inconsistently named.
Solution: Use the "fc_" prefix for all members.
v9.0.0398
2022-09-06 18:57:08 +01:00
Bram Moolenaar
58779858fb
patch 9.0.0397: :defer not tested with exceptions and ":qa!"
...
Problem: :defer not tested with exceptions and ":qa!".
Solution: Test :defer works when exceptions are thrown and when ":qa!" is
used. Invoke the deferred calls on exit.
v9.0.0397
2022-09-06 18:31:14 +01:00
matveyt
2834ebdee4
patch 9.0.0396: :findrepl does not escape '&' and '~' properly
...
Problem: :findrepl does not escape '&' and '~' properly.
Solution: Escape depending on the value of 'magic'. (closes #11067 )
v9.0.0396
2022-09-06 17:00:15 +01:00
Philip H
635bb49085
patch 9.0.0395: clang warnings for function prototypes
...
Problem: Clang warnings for function prototypes.
Solution: Remove incomplete function prototypes. (closes #11068 )
v9.0.0395
2022-09-06 16:31:26 +01:00
K.Takata
5903aaf7eb
patch 9.0.0394: Cygwin: multibyte characters may be broken in terminal window
...
Problem: Cygwin: multibyte characters may be broken in terminal window.
Solution: Adjust how to read and write on the channel. (Ken Takata,
closes #11063 )
v9.0.0394
2022-09-06 11:26:56 +01:00
K.Takata
a9480dbc8c
patch 9.0.0393: signals test often fails on FreeBSD
...
Problem: Signals test often fails on FreeBSD.
Solution: Use separate files for Suspend and Resume. (Ken Takata,
closes #11065 )
v9.0.0393
2022-09-06 10:56:19 +01:00
K.Takata
e53a0d4409
patch 9.0.0392: inverted condition is a bit confusing
...
Problem: Inverted condition is a bit confusing.
Solution: Remove the "!" and swap the blocks. (Ken Takata)
v9.0.0392
2022-09-05 21:45:11 +01:00
Bram Moolenaar
3411265a36
patch 9.0.0391: using separate delete() call instead of writefile() 'D' flag
...
Problem: Using separate delete() call instead of writefile() 'D' flag.
Solution: Use the writefile 'D' flag.
v9.0.0391
2022-09-05 21:40:44 +01:00
Bram Moolenaar
86d87256c4
patch 9.0.0390: cannot use a partial with :defer
...
Problem: Cannot use a partial with :defer.
Solution: Add the partial arguments before the other arguments. Disallow
using a dictionary.
v9.0.0390
2022-09-05 21:21:25 +01:00
Bram Moolenaar
ccfde4d028
patch 9.0.0389: crash when 'tagfunc' closes the window
...
Problem: Crash when 'tagfunc' closes the window.
Solution: Bail out when the window was closed.
v9.0.0389
2022-09-05 19:51:13 +01:00
Yegappan Lakshmanan
8894761daf
patch 9.0.0388: the do_arg_all() function is too long
...
Problem: The do_arg_all() function is too long.
Solution: Split the function in smaller parts. (Yegappan Lakshmanan,
closes #11062 )
v9.0.0388
2022-09-05 18:27:47 +01:00
Bram Moolenaar
ddf7dba96e
patch 9.0.0387: repeat <ScriptCmd> mapping doesn't use right script context
...
Problem: repeating a <ScriptCmd> mapping does not use the right script
context.
Solution: When using a mapping put <SID>{sid}; in the redo buffer.
(closes #11049 )
v9.0.0387
2022-09-05 16:53:21 +01:00
Yegappan Lakshmanan
b1f471ee20
patch 9.0.0386: some code blocks are nested too deep
...
Problem: Some code blocks are nested too deep.
Solution: Bail out earlier. (Yegappan Lakshmanan, closes #11058 )
v9.0.0386
2022-09-05 14:33:47 +01:00
zeertzjq
c47b16a470
patch 9.0.0385: GUI: when CTRL-D is mapped in Insert mode it gets inserted
...
Problem: GUI: when CTRL-D is mapped in Insert mode it gets inserted.
(Yasuhiro Matsumoto)
Solution: Also recognize modifier starting with CSI. (closes #11057 )
v9.0.0385
2022-09-05 13:05:29 +01:00
Bram Moolenaar
c7d2ff2ca0
patch 9.0.0384: Covertity still complains about using return value of getc()
...
Problem: Covertity still complains about using return value of getc().
Solution: Check for EOF.
v9.0.0384
2022-09-05 11:04:14 +01:00
Bram Moolenaar
963ab26842
patch 9.0.0383: Coverity complains about unused value
...
Problem: Coverity complains about unused value.
Solution: Use the value.
v9.0.0383
2022-09-05 10:55:27 +01:00
Bram Moolenaar
31ea6bf530
patch 9.0.0382: freeing the wrong string on failure
...
Problem: Freeing the wrong string on failure.
Solution: Adjust the argument. Reorder the code.
v9.0.0382
2022-09-05 10:47:13 +01:00
Dominique Pelle
b40ad4ff14
patch 9.0.0381: writefile test leaves files behind
...
Problem: Writefile test leaves files behind.
Solution: Fix the file names of files to be deleted. (Dominique Pellé,
closes #11056 )
v9.0.0381
2022-09-04 21:29:46 +01:00
Bram Moolenaar
e1f3ab73bc
patch 9.0.0380: deleting files in tests is a hassle
...
Problem: Deleting files in tests is a hassle.
Solution: Use the new 'D' flag of writefile().
2022-09-04 21:29:08 +01:00
Bram Moolenaar
8f7116cadd
Revert part of patch merged twice
2022-09-04 18:22:16 +01:00