summaryrefslogtreecommitdiff
path: root/src/testdir/test_statusline.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1053: insufficient testing for 'statusline' and 'tabline'v8.2.1053Bram Moolenaar2020-06-251-3/+14
| | | | | Problem: Insufficient testing for 'statusline' and 'tabline'. Solution: Add more tests. (Yegappan Lakshmanan, closes #6333)
* patch 8.2.1043: %a item in 'statusline' not testedv8.2.1043Bram Moolenaar2020-06-231-1/+11
| | | | | Problem: %a item in 'statusline' not tested. Solution: Add a test. (Dominique Pellé, closes #6318)
* 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.2.0235: draw error when an empty group is removed from 'statusline'v8.2.0235Bram Moolenaar2020-02-081-0/+20
| | | | | Problem: Draw error when an empty group is removed from 'statusline'. Solution: Do not use highlighting from a removed group.
* patch 8.1.2373: cannot build with +popupwin but without +quickfixv8.1.2373Bram Moolenaar2019-12-011-0/+3
| | | | | Problem: Cannot build with +popupwin but without +quickfix. (John Marriott) Solution: Adjust #ifdefs.
* patch 8.1.2363: ml_get error when accessing Visual area in 'statusline'v8.1.2363Bram Moolenaar2019-11-301-0/+22
| | | | | Problem: ml_get error when accessing Visual area in 'statusline'. Solution: Disable Visual mode when using another window. (closes #5278)
* patch 8.1.1372: when evaluating 'statusline' the current window is unknownv8.1.1372Bram Moolenaar2019-05-231-1/+22
| | | | | | | Problem: When evaluating 'statusline' the current window is unknown. (Daniel Hahler) Solution: Set "g:actual_curwin" for %{} items. Set "g:statusline_winid" when evaluationg %!. (closes #4406, closes #3299)
* patch 8.1.1171: statusline test could fail in large terminalv8.1.1171Bram Moolenaar2019-04-141-17/+23
| | | | | | Problem: Statusline test could fail in large terminal. Solution: Make the test work on a huge terminal. (Dominique Pelle, closes #4255)
* patch 8.0.1220: skipping empty statusline groups is not correctv8.0.1220Bram Moolenaar2017-10-261-0/+6
| | | | | Problem: Skipping empty statusline groups is not correct. Solution: Also set group_end_userhl. (itchyny)
* patch 8.0.1208: 'statusline' drops empty group with highlight changev8.0.1208Bram Moolenaar2017-10-221-1/+64
| | | | | | Problem: 'statusline' drops empty group with highlight change. Solution: Do not drop an empty group if it changes highlighting. (Marius Gedminas, closes #2228)
* patch 8.0.0645: no error for illegal back reference in NFA enginev8.0.0645Bram Moolenaar2017-06-171-1/+1
| | | | | | Problem: The new regexp engine does not give an error for using a back reference where it is not allowed. (Dominique Pelle) Solution: Check the back reference like the old engine. (closes #1774)
* patch 8.0.0426: insufficient testing for statuslinev8.0.0426Bram Moolenaar2017-03-061-8/+243
| | | | | Problem: Insufficient testing for statusline. Solution: Add several tests. (Dominique Pelle, closes #1534)
* patch 7.4.1711v7.4.1711Bram Moolenaar2016-04-051-0/+39
Problem: When using try/catch in 'statusline' it is still considered an error and the status line will be disabled. Solution: Check did_emsg instead of called_emsg. (haya14busa, closes #729)