summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_startup_utf8.vim
AgeCommit message (Collapse)Author
2022-10-10patch 9.0.0719: too many delete() calls in testsv9.0.0719Bram Moolenaar
Problem: Too many delete() calls in tests. Solution: Use deferred delete where possible.
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-06-09patch 8.2.0936: some terminals misinterpret the code for getting cursor stylev8.2.0936Bram Moolenaar
Problem: Some terminals misinterpret the code for getting cursor style. Solution: Send a sequence to the terminal and check the result. (IWAMOTO Kouichi, closes #2126) Merged with current code.
2020-05-31patch 8.2.0866: not enough tests for buffer writingv8.2.0866Bram Moolenaar
Problem: Not enough tests for buffer writing. Solution: Add more tests. Use CheckRunVimInTerminal in more places. (Yegappan Lakshmanan, closes #6167)
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.
2019-06-06patch 8.1.1483: skipped tests are not properly listedv8.1.1483Bram Moolenaar
Problem: Skipped tests are not properly listed. Solution: Throw a "Skipped" exception instead of using ":finish" or ":return".
2019-01-24patch 8.1.0811: too many #ifdefsv8.1.0811Bram Moolenaar
Problem: Too many #ifdefs. Solution: Graduate FEAT_MBYTE, the final chapter.
2018-09-13patch 8.1.0387: no test for 'ambiwidth' detectionv8.1.0387Bram Moolenaar
Problem: No test for 'ambiwidth' detection. Solution: Add a test.
2016-08-09patch 7.4.2189v7.4.2189Bram Moolenaar
Problem: Cannot detect encoding in a fifo. Solution: Extend the stdin way of detecting encoding to fifo. Add a test for detecting encoding on stdin and fifo. (Ken Takata)