summaryrefslogtreecommitdiff
path: root/src/testdir/test_conceal.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1058: multiline conceal causes display errorsv8.2.1058Bram Moolenaar2020-06-251-0/+22
| | | | | | Problem: Multiline conceal causes display errors. Solution: Do not allow conceal cross over EOL. (closes #6326, closes #4854, closes #6302)
* patch 8.2.0533: tests using term_wait() can still be flakyv8.2.0533Bram Moolenaar2020-04-081-1/+1
| | | | | | | 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.
* patch 8.1.2421: test88 is old stylev8.1.2421Bram Moolenaar2019-12-111-1/+101
| | | | | Problem: Test88 is old style. Solution: Turn into a new style test. (Yegappan Lakshmanan, closes #5347)
* patch 8.1.2031: cursor position wrong when resizing and using concealv8.1.2031Bram Moolenaar2019-09-141-0/+20
| | | | | | Problem: Cursor position wrong when resizing and using conceal. Solution: Set the flags that the cursor position is valid when setting the row and column during redrawing. (closes #4931)
* patch 8.1.1826: tests use hand coded feature and option checksv8.1.1826Bram Moolenaar2019-08-071-6/+3
| | | | | Problem: Tests use hand coded feature and option checks. Solution: Use the commands from check.vim in more tests.
* patch 8.1.1483: skipped tests are not properly listedv8.1.1483Bram Moolenaar2019-06-061-2/+2
| | | | | Problem: Skipped tests are not properly listed. Solution: Throw a "Skipped" exception instead of using ":finish" or ":return".
* patch 8.1.1362: code and data in tests can be hard to readv8.1.1362Bram Moolenaar2019-05-201-23/+27
| | | | | Problem: Code and data in tests can be hard to read. Solution: Use the new heredoc style. (Yegappan Lakshmanan, closes #4400)
* patch 8.1.0746: highlighting not updated with conceal and 'cursorline'v8.1.0746Bram Moolenaar2019-01-141-0/+25
| | | | | | | Problem: Highlighting not updated with conceal and 'cursorline'. (Jason Franklin) Solution: Do not use a zero line number. Check if 'conceallevel' is set for the current window.
* patch 8.1.0725: conceal mode is not completely testedv8.1.0725Bram Moolenaar2019-01-111-0/+14
| | | | | Problem: Conceal mode is not completely tested. Solution: Add tests for moving the cursor in Insert mode.
* patch 8.1.0721: conceal mode is not sufficiently testedv8.1.0721Bram Moolenaar2019-01-111-0/+97
Problem: Conceal mode is not sufficiently tested. Solution: Add screendump tests. Check all 'concealcursor' values.