summaryrefslogtreecommitdiff
path: root/src/testdir/test_highlight.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.1.2007: no test for what 8.1.1926 fixesv8.1.2007Bram Moolenaar2019-09-081-0/+20
| | | | | Problem: No test for what 8.1.1926 fixes. Solution: Add a test case.
* patch 8.1.1826: tests use hand coded feature and option checksv8.1.1826Bram Moolenaar2019-08-071-9/+4
| | | | | Problem: Tests use hand coded feature and option checks. Solution: Use the commands from check.vim in more tests.
* patch 8.1.1619: tests are not run with GUI on Travisv8.1.1619Bram Moolenaar2019-07-031-3/+11
| | | | | Problem: Tests are not run with GUI on Travis. Solution: Add a testgui job. (Ozaki Kiichi, closes #4609)
* patch 8.1.1606: on a narrow screen ":hi" output is confusingv8.1.1606Bram Moolenaar2019-06-291-0/+8
| | | | | | Problem: On a narrow screen ":hi" output is confusing. Solution: Insert a space between highlight group name and "xxx". (Masato Nishihaga, closes #4599)
* patch 8.1.1585: :let-heredoc does not trim enoughv8.1.1585Bram Moolenaar2019-06-241-6/+7
| | | | | | Problem: :let-heredoc does not trim enough. Solution: Trim indent from the contents based on the indent of the first line. Use let-heredoc in more tests.
* patch 8.1.1483: skipped tests are not properly listedv8.1.1483Bram Moolenaar2019-06-061-3/+3
| | | | | Problem: Skipped tests are not properly listed. Solution: Throw a "Skipped" exception instead of using ":finish" or ":return".
* patch 8.1.1396: 'wincolor' does not apply to lines below the bufferv8.1.1396Bram Moolenaar2019-05-251-0/+24
| | | | | Problem: 'wincolor' does not apply to lines below the buffer. Solution: Also apply 'wincolor' to the "~" lines and the number column.
* patch 8.1.1309: test for Normal highlight fails on MS-Windows GUIv8.1.1309Bram Moolenaar2019-05-091-4/+7
| | | | | Problem: Test for Normal highlight fails on MS-Windows GUI. Solution: Skip the test for MS-Windows GUI.
* patch 8.1.1308: the Normal highlight is not defined when compiled with GUIv8.1.1308Bram Moolenaar2019-05-091-0/+7
| | | | | Problem: The Normal highlight is not defined when compiled with GUI. Solution: Always define Normal. (Christian Brabandt, closes #4072)
* patch 8.1.1001: Visual area not correct when using 'cursorline'v8.1.1001Bram Moolenaar2019-03-091-0/+20
| | | | | | Problem: Visual area not correct when using 'cursorline'. Solution: Update w_last_cursorline also in Visual mode. (Hirohito Higashi, closes #4086)
* patch 8.1.0849: cursorline highlight is not always updatedv8.1.0849Bram Moolenaar2019-01-301-4/+23
| | | | | | Problem: Cursorline highlight is not always updated. Solution: Set w_last_cursorline when redrawing. Fix resetting cursor flags when using the popup menu.
* patch 8.1.0711: test files still use function!v8.1.0711Bram Moolenaar2019-01-091-8/+8
| | | | | Problem: Test files still use function!. Solution: Remove the exclamation mark. Fix overwriting a function.
* patch 8.0.1601: highlight test fails on Win32v8.0.1601Bram Moolenaar2018-03-121-0/+5
| | | | | Problem: Highlight test fails on Win32. Solution: Check for vtp and vcon support.
* patch 8.0.1600: crash when setting t_Co to zero when 'termguicolors' is setv8.0.1600Bram Moolenaar2018-03-121-0/+14
| | | | | | Problem: Crash when setting t_Co to zero when 'termguicolors' is set. Solution: Use IS_CTERM instead of checking the number of colors. (closes #2710)
* patch 8.0.1169: highlignting one char too many with 'list' and 'cul'v8.0.1169Bram Moolenaar2017-10-011-1/+27
| | | | | Problem: Highlignting one char too many with 'list' and 'cul'. Solution: Check for 'list' being active. (Ozaki Kiichi, closes #2177)
* patch 8.0.1168: wrong highlighting with combination of match and 'cursorline'v8.0.1168Bram Moolenaar2017-09-301-1/+455
| | | | | | Problem: wrong highlighting with combination of match and 'cursorline'. Solution: Use "line_attr" when appropriate. (Ozaki Kiichi, closes #2111) But don't highlight more than one character.
* patch 8.0.0890: still many old style testsv8.0.0890Bram Moolenaar2017-08-071-0/+36
Problem: Still many old style tests. Solution: Convert several tests to new style. (Yegappan Lakshmanan)