Bram Moolenaar
|
e5b0b98a90
|
patch 8.2.2732: prompt for s///c in Ex mode can be wrong
Problem: Prompt for s///c in Ex mode can be wrong.
Solution: Position the cursor before showing the prompt. (closes #8073)
|
2021-04-07 19:42:57 +02:00 |
|
Bram Moolenaar
|
97202d9516
|
patch 8.2.2424: some tests are known to cause an error with ASAN
Problem: Some tests are known to cause an error with ASAN.
Solution: Add CheckNotAsan.
|
2021-01-28 18:34:35 +01:00 |
|
Bram Moolenaar
|
1d859e2421
|
patch 8.2.2422: crash when deleting with line number out of range
Problem: Crash when deleting with line number out of range. (Houyunsong)
Solution: Avoid using a negative line number.
|
2021-01-28 17:24:58 +01:00 |
|
Bram Moolenaar
|
f637bceb61
|
patch 8.2.2035: MS-Windows: some tests may fail
Problem: MS-Windows: some tests may fail.
Solution: Avoid test failures. (Yegappan Lakshmanan, closes #7346)
|
2020-11-23 18:14:56 +01:00 |
|
Bram Moolenaar
|
399db046ed
|
patch 8.2.1941: Ex mode test fails on MS-Windows with GUI
Problem: Ex mode test fails on MS-Windows with GUI.
Solution: Skip the test when using gvim.
|
2020-11-01 22:31:08 +01:00 |
|
Bram Moolenaar
|
3b6d57f2ce
|
patch 8.2.1939: invalid memory access in Ex mode with global command
Problem: Invalid memory access in Ex mode with global command.
Solution: Make sure the cursor is on a valid line. (closes #7238)
|
2020-11-01 21:56:40 +01:00 |
|
Bram Moolenaar
|
158ea175a9
|
patch 8.2.1000: get error when leaving Ex mode with :visual
Problem: Get error when leaving Ex mode with :visual and a CmdLineEnter
autocommand was used.
Solution: Reset ex_pressedreturn. (closes #6293)
|
2020-06-18 17:28:39 +02:00 |
|
Bram Moolenaar
|
ff06f283e3
|
patch 8.2.0614: get ml_get error when deleting a line in 'completefunc'
Problem: Get ml_get error when deleting a line in 'completefunc'. (Yegappan
Lakshmanan)
Solution: Lock the text while evaluating 'completefunc'.
|
2020-04-21 22:01:14 +02:00 |
|
Bram Moolenaar
|
cde0ff39da
|
patch 8.2.0509: various code is not properly tested.
Problem: various code is not properly tested.
Solution: Add more tests. (Yegappan Lakshmanan, closes #5871)
|
2020-04-04 14:00:39 +02:00 |
|
Bram Moolenaar
|
bad8804cdd
|
patch 8.2.0433: INT signal not properly tested
Problem: INT signal not properly tested.
Solution: Add a test. Also clean up some unnecessary lines. (Dominique
Pelle, closes #5828)
|
2020-03-23 20:54:32 +01:00 |
|
Bram Moolenaar
|
1671f44881
|
patch 8.2.0369: various Normal mode commands not fully tested
Problem: Various Normal mode commands not fully tested.
Solution: Add more tests. (Yegappan Lakshmanan, closes #5751)
|
2020-03-10 07:48:13 +01:00 |
|
Bram Moolenaar
|
bd7206e02c
|
patch 8.2.0358: insufficient testing for indent.c
Problem: Insufficient testing for indent.c.
Solution: Add indent tests. (Yegappan Lakshmanan, closes #5736)
|
2020-03-06 20:36:04 +01:00 |
|
Bram Moolenaar
|
91ffc8a5f5
|
patch 8.2.0347: various code not covered by tests
Problem: Various code not covered by tests.
Solution: Add more test coverage. (Yegappan Lakshmanan, closes #5720)
|
2020-03-02 20:54:22 +01:00 |
|
Bram Moolenaar
|
0546d7df13
|
patch 8.2.0342: some code in ex_getln.c not covered by tests
Problem: Some code in ex_getln.c not covered by tests.
Solution: Add more tests. (Yegappan Lakshmanan, closes #5717)
|
2020-03-01 16:53:09 +01:00 |
|
Bram Moolenaar
|
578fe947e3
|
patch 8.2.0325: ex_getln.c code not covered by tests
Problem: Ex_getln.c code not covered by tests.
Solution: Add a few more tests. (Yegappan Lakshmanan, closes #5702)
|
2020-02-27 21:32:51 +01:00 |
|
Bram Moolenaar
|
818fc9ad14
|
patch 8.2.0293: various Ex commands not sufficiently tested
Problem: Various Ex commands not sufficiently tested.
Solution: Add more test cases. (Yegappan Lakshmanan, closes #5673)
|
2020-02-21 17:54:45 +01:00 |
|
Bram Moolenaar
|
9e2bcb5d23
|
patch 8.2.0274: hang with combination of feedkeys(), Ex mode and :global
Problem: Hang with combination of feedkeys(), Ex mode and :global.
(Yegappan Lakshmanan)
Solution: Add the pending_exmode_active flag.
|
2020-02-18 21:33:00 +01:00 |
|
Bram Moolenaar
|
bc2b71d44a
|
patch 8.2.0270: some code not covered by tests
Problem: Some code not covered by tests.
Solution: Add test cases. (Yegappan Lakshmanan, closes #5649)
|
2020-02-17 21:33:30 +01:00 |
|
Bram Moolenaar
|
9f6277bdde
|
patch 8.2.0243: insufficient code coverage for ex_docmd.c functions
Problem: Insufficient code coverage for ex_docmd.c functions.
Solution: Add more tests. (Yegappan Lakshmanan, closes #5618)
|
2020-02-11 22:04:02 +01:00 |
|
Bram Moolenaar
|
e20b9ececa
|
patch 8.2.0203: :helptags and some other functionality not tested
Problem: :helptags and some other functionality not tested.
Solution: Add more tests. (Yegappan Lakshmanan, closes #5567)
|
2020-02-03 21:40:04 +01:00 |
|
Bram Moolenaar
|
59cb041d0a
|
patch 8.2.0023: command line editing not sufficiently tested
Problem: Command line editing not sufficiently tested.
Solution: Add more tests. (Dominique Pelle, closes #5374)
|
2019-12-18 22:26:31 +01:00 |
|