summaryrefslogtreecommitdiff
path: root/src/testdir/test_marks.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1432: various inconsistencies in test filesv8.2.1432Bram Moolenaar2020-08-121-0/+1
| | | | | | | 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)
* patch 8.2.1252: ":marks" may show '< and '> mixed upv8.2.1252Bram Moolenaar2020-07-191-19/+29
| | | | | Problem: ":marks" may show '< and '> mixed up. Solution: Show the mark position as where '< and '> would jump.
* patch 8.2.0871: cannot use getmarklist() as a methodv8.2.0871Bram Moolenaar2020-06-011-7/+7
| | | | | | Problem: Cannot use getmarklist() as a method. Solution: Make getmarklist() work as a method. Add one to the column number to match getpos(). (Yegappan Lakshmanan, closes #6176)
* patch 8.2.0861: cannot easily get all the current marksv8.2.0861Bram Moolenaar2020-05-311-0/+25
| | | | | Problem: Cannot easily get all the current marks. Solution: Add getmarklist(). (Yegappan Lakshmanan, closes #6032)
* patch 8.2.0535: regexp patterns not fully testedv8.2.0535Bram Moolenaar2020-04-091-0/+3
| | | | | | Problem: Regexp patterns not fully tested. Solution: Add more regexp tests and others. (Yegappan Lakshmanan, closes #5901)
* patch 8.2.0448: various functions not properly testedv8.2.0448Bram Moolenaar2020-03-251-0/+2
| | | | | | Problem: Various functions not properly tested. Solution: Add more tests, especially for failures. (Yegappan Lakshmanan, closes #5843)
* patch 8.2.0418: code in eval.c not sufficiently covered by testsv8.2.0418Bram Moolenaar2020-03-201-0/+9
| | | | | Problem: Code in eval.c not sufficiently covered by tests. Solution: Add more tests. (Yegappan Lakshmanan, closes #5815)
* patch 8.2.0369: various Normal mode commands not fully testedv8.2.0369Bram Moolenaar2020-03-101-0/+24
| | | | | Problem: Various Normal mode commands not fully tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5751)
* patch 8.2.0261: some code not covered by testsv8.2.0261Bram Moolenaar2020-02-161-0/+9
| | | | | Problem: Some code not covered by tests. Solution: Add test cases. (Yegappan Lakshmanan, closes #5645)
* patch 8.2.0120: virtcol() does not check arguments to be validv8.2.0120Bram Moolenaar2020-01-151-2/+19
| | | | | | | Problem: virtcol() does not check arguments to be valid, which may lead to a crash. Solution: Check the column to be valid. Do not decrement MAXCOL. (closes #5480)
* patch 8.2.0050: after deleting a file mark it is still in viminfov8.2.0050Bram Moolenaar2019-12-271-0/+5
| | | | | | | Problem: After deleting a file mark it is still in viminfo. Solution: When a file mark was deleted more recently than the mark in the merged viminfo file was updated, do not store the mark. (Pavol Juhas, closes #5401, closes #1339)
* patch 8.1.2381: not all register related code is covered by testsv8.1.2381Bram Moolenaar2019-12-021-0/+17
| | | | | Problem: Not all register related code is covered by tests. Solution: Add more test cases. (Yegappan Lakshmanan, closes #5301)
* patch 8.1.0875: not all errors of marks and findfile()/finddir() are testedv8.1.0875Bram Moolenaar2019-02-041-0/+41
| | | | | Problem: Not all errors of marks and findfile()/finddir() are tested. Solution: Add more test coverage. (Dominique Pelle)
* patch 8.1.0811: too many #ifdefsv8.1.0811Bram Moolenaar2019-01-241-3/+0
| | | | | Problem: Too many #ifdefs. Solution: Graduate FEAT_MBYTE, the final chapter.
* patch 8.1.0711: test files still use function!v8.1.0711Bram Moolenaar2019-01-091-4/+4
| | | | | Problem: Test files still use function!. Solution: Remove the exclamation mark. Fix overwriting a function.
* patch 8.1.0175: marks test fails in very wide windowv8.1.0175Bram Moolenaar2018-07-101-5/+2
| | | | | Problem: Marks test fails in very wide window. (Vladimir Lomov) Solution: Extend the text to match 'columns'. (closes #3180, closes #3181)
* patch 8.1.0168: output of :marks is too short with multi-byte charsv8.1.0168Bram Moolenaar2018-07-081-3/+22
| | | | | | Problem: Output of :marks is too short with multi-byte chars. (Tony Mechelynck) Solution: Get more bytes from the text line.
* patch 8.0.1184: the :marks command is not testedv8.0.1184Bram Moolenaar2017-10-081-0/+52
| | | | | Problem: The :marks command is not tested. Solution: Add a test. (Dominique Pelle, closes #2197)
* patch 8.0.0255: setpos() does not use the buffer argument for all marksv8.0.0255Bram Moolenaar2017-01-281-0/+44
| | | | | | | Problem: When calling setpos() with a buffer argument it often is ignored. (Matthew Malcomson) Solution: Make the buffer argument work for all marks local to a buffer. (neovim #5713) Add more tests.
* patch 7.4.2305v7.4.2305Bram Moolenaar2016-09-011-0/+26
Problem: Marks, writefile and nested function tests are old style. Solution: Turn them into new style tests. (Yegappan Lakshmanan)