summaryrefslogtreecommitdiff
path: root/src/testdir/test_matchadd_conceal.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.0533: tests using term_wait() can still be flakyv8.2.0533Bram Moolenaar2020-04-081-4/+4
| | | | | | | 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.2405: matchadd_conceal test fails under valgrindv8.1.2405Bram Moolenaar2019-12-071-2/+4
| | | | | Problem: matchadd_conceal test fails under valgrind. Solution: Use WaitForAssert() and wait a bit longer.
* patch 8.1.2303: cursor in wrong position after horizontal scrollv8.1.2303Bram Moolenaar2019-11-161-0/+28
| | | | | Problem: Cursor in wrong position after horizontal scroll. Solution: Set w_valid_leftcol. (closes #5214, closes #5224)
* patch 8.1.2294: cursor pos wrong with concealing and search causes a scrollv8.1.2294Bram Moolenaar2019-11-121-0/+39
| | | | | | | Problem: Cursor position wrong when characters are concealed and asearch causes a scroll. Solution: Fix the cursor column in a concealed line after window scroll. (closes #5215, closes #5012)
* patch 8.1.1544: some balloon tests don't run when they canv8.1.1544Bram Moolenaar2019-06-151-3/+2
| | | | | | | Problem: Some balloon tests don't run when they can. Solution: Split GUI balloon tests off into a separate file. (Ozaki Kiichi, closes #4538) Change the feature check into a command for consistency.
* patch 8.1.1524: tests are silently skippedv8.1.1524Bram Moolenaar2019-06-131-1/+2
| | | | | Problem: Tests are silently skipped. Solution: Throw an exception for skipped tests in more places.
* patch 8.1.0711: test files still use function!v8.1.0711Bram Moolenaar2019-01-091-18/+18
| | | | | Problem: Test files still use function!. Solution: Remove the exclamation mark. Fix overwriting a function.
* patch 8.0.1553: cannot see what digraph is used to insert a characterv8.0.1553Bram Moolenaar2018-02-271-26/+16
| | | | | Problem: Cannot see what digraph is used to insert a character. Solution: Show the digraph with the "ga" command. (Christian Brabandt)
* patch 8.0.0052v8.0.0052Bram Moolenaar2016-10-281-0/+1
| | | | | Problem: Conceal test passes even without the bug fix. Solution: Add a redraw command. (Christian Brabandt)
* patch 8.0.0049v8.0.0049Bram Moolenaar2016-10-271-0/+22
| | | | | | | Problem: When a match ends in part of concealed text highlighting, it might mess up concealing by resetting prev_syntax_id. Solution: Do not reset prev_syntax_id and add a test to verify. (Christian Brabandt, closes #1092)
* patch 7.4.1740v7.4.1740Bram Moolenaar2016-04-141-0/+266
Problem: syn-cchar defined with matchadd() does not appear if there are no other syntax definitions which matches buffer text. Solution: Check for startcol. (Ozaki Kiichi, haya14busa, closes #757)