summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_display.vim
AgeCommit message (Collapse)Author
2020-08-12patch 8.2.1432: various inconsistencies in test filesv8.2.1432Bram Moolenaar
Problem: Various inconsistencies in test files. Solution: Add modelines where they were missing. Use Check commands instead of silently skipping over tests. Adjust indents and comments. (Ken Takata, closes #6695)
2020-08-01patch 8.2.1345: Redraw error when using visual block and scrollv8.2.1345Bram Moolenaar
Problem: Redraw error when using visual block and scroll. Solution: Add check for w_topline. ( closes #6597)
2020-06-10patch 8.2.0943: displaying ^M or ^J depends on current bufferv8.2.0943Bram Moolenaar
Problem: Displaying ^M or ^J depends on current buffer. Solution: Pass the displayed buffer to transchar(). (closes #6225)
2020-04-08patch 8.2.0533: tests using term_wait() can still be flakyv8.2.0533Bram Moolenaar
Problem: Tests using term_wait() can still be flaky. Solution: Increase the wait time when rerunning a test. (James McCoy, closes #5899) Halve the initial times to make tests run faster when there is no rerun.
2020-03-23patch 8.2.0433: INT signal not properly testedv8.2.0433Bram Moolenaar
Problem: INT signal not properly tested. Solution: Add a test. Also clean up some unnecessary lines. (Dominique Pelle, closes #5828)
2019-12-14patch 8.2.0006: test using long file name may failv8.2.0006Bram Moolenaar
Problem: Test using long file name may fail. (Vladimir Lomov) Solution: Limit the name length. (Christian Brabandt, closes #5358)
2019-12-11patch 8.1.2419: with a long file name the hit-enter prompt appearsv8.1.2419Bram Moolenaar
Problem: With a long file name the hit-enter prompt appears. (J. Lewis Muir) Solution: When checking for text to wrap don't do this when outputing a CR.
2019-10-24patch 8.1.2206: no test for fixed issue #3893v8.1.2206Bram Moolenaar
Problem: No test for fixed issue #3893. Solution: Add a test. (Christian Brabandt, #3893)
2019-09-20patch 8.1.2060: "precedes" in 'listchars' not used properlyv8.1.2060Bram Moolenaar
Problem: "precedes" in 'listchars' not used properly. Solution: Correctly handle the "precedes" char in list mode for long lines. (Christian Brabandt, closes #4953)
2019-08-03patch 8.1.1806: test for display updating doesn't check without statuslinev8.1.1806Bram Moolenaar
Problem: Test for display updating doesn't check without statusline. Solution: Add screenshots without a status line.
2019-08-03patch 8.1.1804: no test for display updating without a scroll regionv8.1.1804Bram Moolenaar
Problem: No test for display updating without a scroll region. Solution: Add a test.
2019-01-24patch 8.1.0811: too many #ifdefsv8.1.0811Bram Moolenaar
Problem: Too many #ifdefs. Solution: Graduate FEAT_MBYTE, the final chapter.
2019-01-09patch 8.1.0711: test files still use function!v8.1.0711Bram Moolenaar
Problem: Test files still use function!. Solution: Remove the exclamation mark. Fix overwriting a function.
2017-03-29patch 8.0.0524: folds messed upv8.0.0524Bram Moolenaar
Problem: Folds are messed up when 'encodin' is "utf-8". Solution: Also set the fold character when it's not multi-byte.
2017-03-29patch 8.0.0518: bad fold text when a multi-byte char has a zero bytev8.0.0518Bram Moolenaar
Problem: Storing a zero byte from a multi-byte character causes fold text to show up wrong. Solution: Avoid putting zero in ScreenLines. (Christian Brabandt, closes #1567)
2016-12-09patch 8.0.0128v8.0.0128Bram Moolenaar
Problem: Display test fails on MS-Windows. Solution: Set 'isprint' to "@".
2016-12-09patch 8.0.0126v8.0.0126Bram Moolenaar
Problem: Display problem with 'foldcolumn' and a wide character. (esiegerman) Solution: Don't use "extra" but an allocated buffer. (Christian Brabandt, closes #1310)