Bram Moolenaar
5ea38d1e7f
patch 8.2.5114: time limit on searchpair() does not work properly
...
Problem: Time limit on searchpair() does not work properly.
Solution: Set the time limit once instead of for each regexp. (closes #10562 )
2022-06-16 21:20:48 +01:00
Bram Moolenaar
a272624c76
patch 8.2.5112: gui test hangs on MS-Windows
...
Problem: Gui test hangs on MS-Windows.
Solution: Use "!start" to start Vim.
2022-06-16 16:36:43 +01:00
Bram Moolenaar
de8be2beae
patch 8.2.5111: no test for --gui-dialog-file
...
Problem: No test for --gui-dialog-file.
Solution: Add a test.
2022-06-16 14:45:41 +01:00
Bram Moolenaar
bf6614643f
patch 8.2.5110: icon filetype not recognized from the first line
...
Problem: Icon filetype not recognized from the first line.
Solution: Add a check for the first line. (Doug Kearns)
2022-06-16 13:27:18 +01:00
Bram Moolenaar
7a1d32809b
patch 8.2.5109: mode not updated after CTRL-O CTRL-C in Insert mode
...
Problem: Mode not updated after CTRL-O CTRL-C in Insert mode.
Solution: Set redraw_mode and use it. (closes #10581 )
2022-06-16 13:04:45 +01:00
Bram Moolenaar
308660bd26
patch 8.2.5108: retab test disabled because it hangs on MS-Windows
...
Problem: Retab test disabled because it hangs on MS-Windows.
Solution: Also set got_int at the other place a overlong text is detected.
2022-06-16 12:10:48 +01:00
Bram Moolenaar
83497f8758
patch 8.2.5105: test still hangs on MS-Windows
...
Problem: Test still hangs on MS-Windows.
Solution: Skip "nocatch" test the right way.
2022-06-15 22:11:45 +01:00
Bram Moolenaar
b31cb04771
patch 8.2.5104: test hangs on MS-Windows
...
Problem: Test hangs on MS-Windows.
Solution: Skip another test on MS-Windows.
2022-06-15 21:28:55 +01:00
Bram Moolenaar
34f99584c7
patch 8.2.5103: build fails with small features
...
Problem: Build fails with small features.
Solution: Add #ifdef. Skip test on MS-Windows.
2022-06-15 21:08:09 +01:00
Bram Moolenaar
8bea171f15
patch 8.2.5102: interrupt not caught in test
...
Problem: Interrupt not caught in test.
Solution: Consider an exception thrown in the current try/catch when got_int
is set. Also catch early exit when not using try/catch.
2022-06-15 20:49:35 +01:00
Bram Moolenaar
dad5d2f87b
patch 8.2.5100: memory usage tests are not retried
...
Problem: Memory usage tests are not retried.
Solution: Mark memory usage tests as flaky.
2022-06-15 18:08:42 +01:00
Bram Moolenaar
62eb239c1c
patch 8.2.5099: some terminal tests are not retried
...
Problem: Some terminal tests are not retried.
Solution: Mark terminal tests as flaky.
2022-06-15 17:52:44 +01:00
Bram Moolenaar
fc9f0fd6d1
patch 8.2.5098: spelldump test sometimes hangs
...
Problem: Spelldump test sometimes hangs.
Solution: Catch the problem of the spell file not being found to avoid
hanging in the download dialog.
2022-06-15 16:57:44 +01:00
Bram Moolenaar
377d92a912
patch 8.2.5096: terminal test still fails with some shell commands
...
Problem: Terminal test still fails with some shell commands.
Solution: Add missing "call". (closes #10530 )
2022-06-14 21:22:12 +01:00
Bram Moolenaar
99f4b6e082
patch 8.2.5095: terminal test still fails with some shell commands
...
Problem: Terminal test still fails with some shell commands.
Solution: Disable setting the window title in the Vim instance running in a
terminal window. (closes #10530 )
2022-06-14 19:52:16 +01:00
Bram Moolenaar
217ea51ee4
patch 8.2.5094: MS-Windows GUI: empty command may cause a dialog
...
Problem: MS-Windows GUI: empty command may cause a dialog.
Solution: Delete the dialog file. Improve the message.
2022-06-14 17:13:59 +01:00
Bram Moolenaar
e564c7009d
patch 8.2.5091: terminal test fails with some shell commands
...
Problem: Terminal test fails with some shell commands.
Solution: Disable setting the window title. (closes #10530 )
2022-06-14 15:00:28 +01:00
Bram Moolenaar
2d12c25a1b
patch 8.2.5084: when the GUI shows a dialog tests get stuck
...
Problem: When the GUI shows a dialog tests get stuck.
Solution: Add the --gui-dialog-file argument.
2022-06-13 21:42:45 +01:00
Bram Moolenaar
db77c49401
patch 8.2.5083: autocmd test still fails on MS-Windows
...
Problem: Autocmd test still fails on MS-Windows.
Solution: Change backward to forward slashes.
2022-06-12 23:26:50 +01:00
Bram Moolenaar
9397423985
patch 8.2.5082: retab test fails
...
Problem: Retab test fails.
Solution: Disable the test for now.
2022-06-12 23:05:07 +01:00
Bram Moolenaar
7c0d0c3c75
patch 8.2.5081: autocmd test fails on MS-Windows
...
Problem: Autocmd test fails on MS-Windows.
Solution: Set shellslash to get forward slashes.
2022-06-12 22:33:33 +01:00
Bram Moolenaar
d8c9d32c89
patch 8.2.5079: DirChanged autocommand may use freed memory
...
Problem: DirChanged autocommand may use freed memory. (Shane-XB Qian)
Solution: Free the memory later. (closes #10555 )
2022-06-12 11:49:16 +01:00
zeertzjq
3269efdf01
patch 8.2.5078: substitute test has a one second delay
...
Problem: Substitute test has a one second delay.
Solution: Use ":silent!". Add another test case. (closes #10558 )
2022-06-12 11:13:05 +01:00
Bram Moolenaar
ad73cc2ff2
patch 8.2.5074: spell test fails on MS-Windows
...
Problem: Spell test fails on MS-Windows.
Solution: Do not change 'encoding'
2022-06-10 00:02:10 +01:00
Bram Moolenaar
2813f38e02
patch 8.2.5072: using uninitialized value and freed memory in spell command
...
Problem: Using uninitialized value and freed memory in spell command.
Solution: Initialize "attr". Check for empty line early.
2022-06-09 19:54:24 +01:00
Bram Moolenaar
aca12fd89b
patch 8.2.5066: timer_create is not available on every Mac system
...
Problem: Timer_create is not available on every Mac system. (Hisashi T
Fujinaka)
Solution: Adjust #ifdef.
2022-06-07 10:16:15 +01:00
zeertzjq
3760bfddc4
patch 8.2.5064: no test for what 8.1.0052 fixes
...
Problem: No test for what 8.1.0052 fixes.
Solution: Add a test. (closes #10531 )
2022-06-06 16:22:46 +01:00
Bram Moolenaar
44a3f3353e
patch 8.2.5063: error for a command may go over the end of IObuff
...
Problem: Error for a command may go over the end of IObuff.
Solution: Truncate the message.
2022-06-06 15:38:21 +01:00
zeertzjq
e3a529bc87
patch 8.2.5058: input() does not handle composing characters properly
...
Problem: input() does not handle composing characters properly.
Solution: Use mb_cptr2char_adv() instead of mb_ptr2char_adv().
(closes #10527 )
2022-06-05 19:01:37 +01:00
Paul Ollis
6574577cac
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
...
Problem: Using gettimeofday() for timeout is very inefficient.
Solution: Set a platform dependent timer. (Paul Ollis, closes #10505 )
2022-06-05 16:55:54 +01:00
Mudskipper875
635f48010d
patch 8.2.5054: no good filetype for conf files similar to dosini
...
Problem: No good filetype for conf files similar to dosini.
Solution: Add the confini filetype. (closes #10510 )
2022-06-03 18:40:53 +01:00
Bram Moolenaar
75ebd2aab0
patch 8.2.5053: cannot have a comment halfway an expression in a block
...
Problem: Cannot have a comment halfway an expression in an autocmd command
block.
Solution: When skipping over the NL also skip over comments. (closes #10519 )
2022-06-03 17:39:46 +01:00
Bram Moolenaar
409510c588
patch 8.2.5050: using freed memory when searching for pattern in path
...
Problem: Using freed memory when searching for pattern in path.
Solution: Make a copy of the line.
2022-06-01 15:23:13 +01:00
Yegappan Lakshmanan
00e977cb83
patch 8.2.5049: insufficient tests for autocommands
...
Problem: Insufficient tests for autocommands.
Solution: Add a few more tests. (Yegappan Lakshmanan, closes #10507 )
2022-06-01 12:31:53 +01:00
Bram Moolenaar
b5912e0643
patch 8.2.5048: when using XIM the gui test may fail
...
Problem: When using XIM the gui test may fail.
Solution: Only use --not-a-term when not using XIM.
2022-05-31 17:03:14 +01:00
Bram Moolenaar
368137aa52
patch 8.2.5047: CurSearch highlight is often wrong
...
Problem: CurSearch highlight is often wrong.
Solution: Remember the last highlighted position and redraw when needed.
2022-05-31 13:43:12 +01:00
Bram Moolenaar
10db31f949
patch 8.2.5045: can escape a terminal popup window when the job is finished
...
Problem: Can escape a terminal popup window when the job is finished.
Solution: Only check for a finished job where it is relevant.
(closes #10253 )
2022-05-30 17:58:03 +01:00
Bram Moolenaar
be99042b03
patch 8.2.5044: command line test fails
...
Problem: Command line test fails.
Solution: Also beep when cmdline win can't be opened because of locks.
Make the test not beep. Make the test pass on MS-Windows.
2022-05-30 16:01:42 +01:00
Bram Moolenaar
71223e2db8
patch 8.2.5043: can open a cmdline window from a substitute expression
...
Problem: Can open a cmdline window from a substitute expression.
Solution: Disallow opening a command line window when text or buffer is
locked.
2022-05-30 15:23:09 +01:00
Bram Moolenaar
89b25585cc
patch 8.2.5042: scrollbar thumb in tall scrolled popup not visible
...
Problem: Scrollbar thumb in tall scrolled popup not visible.
Solution: Show at least one thumb character. (fixes 10492)
2022-05-30 13:20:56 +01:00
Bram Moolenaar
9e636b9d2e
patch 8.2.5041: cannot close a terminal popup with "NONE" job
...
Problem: Cannot close a terminal popup with "NONE" job.
Solution: Adjust the conditions for whether a job is running.
(closes #10498 )
2022-05-29 22:37:05 +01:00
Bram Moolenaar
fc376e0b1a
patch 8.2.5040: scrollbar thumb in scrolled popup not visible
...
Problem: Scrollbar thumb in scrolled popup not visible.
Solution: Show at least one thumb character. (fixes 10492)
2022-05-29 18:18:18 +01:00
Bram Moolenaar
83bd7a9740
patch 8.2.5039: confusing error if first argument of popup_create() is wrong
...
Problem: Confusing error if first argument of popup_create() is wrong.
Solution: Give a more informative error.
2022-05-29 17:13:24 +01:00
Bram Moolenaar
d28950f954
patch 8.2.5038: a finished terminal in a popup window does not show scrollbar
...
Problem: A finished terminal in a popup window does not show a scrollbar.
Solution: Show the scrollbar if the terminal job is finished. (closes
#10497 )
2022-05-29 14:13:04 +01:00
Bram Moolenaar
4d97a565ae
patch 8.2.5037: cursor position may be invalid after "0;" range
...
Problem: Cursor position may be invalid after "0;" range.
Solution: Check the cursor position when it was set by ";" in the range.
2022-05-28 14:25:35 +01:00
zeertzjq
e6f13b473c
patch 8.2.5035: when splitting a window the changelist position moves
...
Problem: When splitting a window the changelist position moves.
Solution: Set the changelist index a bit later. (closes #10493 )
2022-05-28 10:49:44 +01:00
Bram Moolenaar
5a6ec10cc8
patch 8.2.5034: there is no way to get the byte index from a virtual column
...
Problem: There is no way to get the byte index from a virtual column.
Solution: Add virtcol2col(). (Yegappan Lakshmanan, closes #10477 ,
closes #10098 )
2022-05-27 21:58:00 +01:00
Bram Moolenaar
ddf5312929
patch 8.2.5032: Python 3 test fails without the GUI
...
Problem: Python 3 test fails without the GUI.
Solution: Check the balloon_eval feature is available.
2022-05-27 20:23:20 +01:00
Bram Moolenaar
76381a5b4f
patch 8.2.5031: cannot easily run the benchmarks
...
Problem: Cannot easily run the benchmarks.
Solution: Have "make benchmark" in the src directory work.
2022-05-27 20:13:28 +01:00
Yegappan Lakshmanan
e0ff3a7de6
patch 8.2.5030: autocmd_add() can only handle one event and pattern
...
Problem: autocmd_add() can only handle one event and pattern.
Solution: Support a list of events and patterns. (Yegappan Lakshmanan,
closes #10483 )
2022-05-27 18:05:33 +01:00