- 03 Aug, 2022 4 commits
-
-
James McCoy authored
Signed-off-by:James McCoy <jamessan@debian.org>
-
James McCoy authored
It fails if the build directory is too long: Found errors in Test_Debugger_breakadd_expr(): Run 1: command line..script /builds/vim-team/vim/debian/output/source_dir/src/vim-gtk3/testdir/runtest.vim[468]..function RunTheTest[44]..Test_Debugger_breakadd_expr[17]..RunDbgCmd[9]..CheckDbgOutput[8]..WaitForAssert[2]..<SNR>5_WaitForCommon[11]..<lambda>121 line 1: Expected 'Oldval = "10"' but got 'Newval = "11"' command line..script /builds/vim-team/vim/debian/output/source_dir/src/vim-gtk3/testdir/runtest.vim[468]..function RunTheTest[44]..Test_Debugger_breakadd_expr[17]..RunDbgCmd[9]..CheckDbgOutput[8]..WaitForAssert[2]..<SNR>5_WaitForCommon[11]..<lambda>122 line 1: Expected 'Newval = "11"' but got '/builds/vim-team/vim/debian/output/source_dir/src/vim-gtk3/testdir/Xtest.vi' command line..script /builds/vim-team/vim/debian/output/source_dir/src/vim-gtk3/testdir/runtest.vim[468]..function RunTheTest[44]..Test_Debugger_breakadd_expr[17]..RunDbgCmd[9]..CheckDbgOutput[8]..WaitForAssert[2]..<SNR>5_WaitForCommon[11]..<lambda>123 line 1: Expected '/builds/vim-team/vim/debian/output/source_dir/src/vim-gtk3/testdir/Xtest.vim' but got 'm' command line..script /builds/vim-team/vim/debian/output/source_dir/src/vim-gtk3/testdir/runtest.vim[468]..function RunTheTest[44]..Test_Debugger_breakadd_expr[25]..RunDbgCmd[9]..CheckDbgOutput[8]..WaitForAssert[2]..<SNR>5_WaitForCommon[11]..<lambda>125 line 1: Expected 'Oldval = "11"' but got 'Newval = "12"' command line..script /builds/vim-team/vim/debian/output/source_dir/src/vim-gtk3/testdir/runtest.vim[468]..function RunTheTest[44]..Test_Debugger_breakadd_expr[25]..RunDbgCmd[9]..CheckDbgOutput[8]..WaitForAssert[2]..<SNR>5_WaitForCommon[11]..<lambda>126 line 1: Expected 'Newval = "12"' but got '/builds/vim-team/vim/debian/output/source_dir/src/vim-gtk3/testdir/Xtest.vi' command line..script /builds/vim-team/vim/debian/output/source_dir/src/vim-gtk3/testdir/runtest.vim[468]..function RunTheTest[44]..Test_Debugger_breakadd_expr[25]..RunDbgCmd[9]..CheckDbgOutput[8]..WaitForAssert[2]..<SNR>5_WaitForCommon[11]..<lambda>127 line 1: Expected '/builds/vim-team/vim/debian/output/source_dir/src/vim-gtk3/testdir/Xtest.vim' but got 'm' Signed-off-by:James McCoy <jamessan@debian.org>
-
James McCoy authored
Gbp-Dch: Ignore Signed-off-by:James McCoy <jamessan@debian.org>
-
James McCoy authored
Signed-off-by:James McCoy <jamessan@debian.org>
-
- 02 Aug, 2022 3 commits
-
-
James McCoy authored
Signed-off-by:James McCoy <jamessan@debian.org>
-
zeertzjq authored
Problem: Comment about tabpage line above the wrong code. Solution: Move the comment. (closes #10836)
-
Bram Moolenaar authored
Problem: No test for text property with column zero. Solution: Add a test. Add message to assert for no open popups.
-
- 01 Aug, 2022 10 commits
-
-
Bram Moolenaar authored
Problem: Virtual text after line moves to joined line. (Yegappan Lakshmanan) Solution: When joining lines only keep virtual text after the last line. -
Bram Moolenaar authored
Problem: Multi-byte characters in virtual text not handled correctly. Solution: Count screen cells instead of bytes.
-
Bram Moolenaar authored
Problem: Virtual text with Tab is not displayed correctly. Solution: Change any Tab to a space.
-
Bram Moolenaar authored
Problem: Cursor position wrong when inserting around virtual text. Solution: Update the cursor position properly.
-
Bram Moolenaar authored
-
Mike Williams authored
Problem: Compiler warning for int/size_t usage. Solution: Add a type cast. (Mike Williams, closes #10830)
-
Bram Moolenaar authored
Problem: Coverity complains about possible double free. Solution: Clear the pointer to avoid warnings.
-
zeertzjq authored
Problem: Unused variable. Solution: Remove the variable. (closes #10829)
-
John Drouhard authored
Problem: Expanding file names fails in directory with more than 255 entries. Solution: Use an int instead of char_u to count. (John Drouhard, closes #10818) -
Bram Moolenaar authored
Problem: Cursor positioned wrong with virtual text after the line. Solution: Clear cts_with_trailing.
-
- 31 Jul, 2022 7 commits
-
-
zeertzjq authored
Problem: Code has more indent than needed. Solution: Use continue and return statements. (closes #10824)
-
Bram Moolenaar authored
Problem: Cannot build with small features. Solution: Add #ifdef.
-
Bram Moolenaar authored
Problem: Breakindent test fails. Solution: Fix condition.
-
Bram Moolenaar authored
Problem: Cannot put virtual text after or below a line. Solution: Add "text_align" and "text_wrap" arguments.
-
Anton Sharonov authored
Problem: MS-Windows GUI: cannot use AltGr + Space. Solution: Check for VK_MENU instead of VK_LMENU. (Anton Sharonov, closes #10820, closes #10753) -
K.Takata authored
Problem: Tiny chance that creating a backup file fails. Solution: Check for EEXIST error. (Ken Takata, closes #10821)
-
zeertzjq authored
Problem: No test for what patch 9.0.0155 fixes. Solution: Add a test. Fix typos. (closes #10822)
-
- 30 Jul, 2022 10 commits
-
-
Bram Moolenaar authored
Problem: Text of removed textprop with text is not freed. Solution: Free the text when the property is removed. Reduce the array size to ignore NULLs at the end. -
Bram Moolenaar authored
Problem: Virtual text not displayed if 'signcolumn' is "yes". Solution: Set c_extra and c_final to NUL.
-
Bram Moolenaar authored
Problem: When 'cmdheight' is zero pressing ':' may scroll a window. Solution: Add the made_cmdheight_nonzero flag and set 'scrolloff' to zero.
-
Shougo Matsushita authored
Problem: The command line takes up space even when not used. Solution: Allow for 'cmdheight' to be set to zero. (Shougo Matsushita, closes #10675, closes #940) -
K.Takata authored
Problem: has() is not strict about parsing the patch version. Solution: Check the version more strictly. (Ken Takata, closes #10752)
-
Bram Moolenaar authored
Problem: MS-Windows: test fails because file already exists. Solution: Wait a little while until the file is gone.
-
Bram Moolenaar authored
Problem: "nocombine" is missing from synIDattr(). Solution: Add "nocombine". (Muni Tanjim, closes #10816)
-
Carlo Teubner authored
Problem: Help tag generation picks up words in code examples. Solution: Skip over examples. (Carlo Teubner, closes #10813)
-
Bram Moolenaar authored
Problem: Writing over the end of a buffer on stack when making list of spell suggestions. Solution: Make sure suggested word is not too long. (closes #10812) -
Bram Moolenaar authored
Problem: Configure check for timer_create may give wrong error. Solution: Give a warning instead of an error.
-
- 29 Jul, 2022 5 commits
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Condition always has the same value. Solution: Remove the condition.
-
Bram Moolenaar authored
Problem: Illegal byte regexp test doesn't fail when fix is reversed. Solution: Make sure illegal bytes end up in sourced script file.
-
Bram Moolenaar authored
Problem: Illegal memory access when pattern starts with illegal byte. Solution: Do not match a character with an illegal byte.
-
Bram Moolenaar authored
Problem: Going beyond allocated memory when evaluating string constant. Solution: Properly skip over <Key> form.
-
- 28 Jul, 2022 1 commit
-
-
Bram Moolenaar authored
Problem: If running configure with cached results -lrt may be missing. Solution: Use two cache variables, one without and one with -lrt. (closes #10799) Swap checks to avoid adding -lrt unnecessarily.
-