summaryrefslogtreecommitdiff
path: root/src/testdir/test_arglist.vim
AgeCommit message (Collapse)Author
2018-04-24patch 8.0.1763: :argedit does not reuse an empty unnamed bufferBram Moolenaar
Problem: :argedit does not reuse an empty unnamed buffer. Solution: Add the BLN_CURBUF flag and fix all the side effects. (Christian Brabandt, closes #2713)
2018-04-20patch 8.0.1738: ":args" output is hard to readBram Moolenaar
Problem: ":args" output is hard to read. Solution: Make columns with the names if the output is more than one line.
2017-10-27patch 8.0.1224: still interference between test functionsBram Moolenaar
Problem: Still interference between test functions. Solution: Clear autocommands. Wipe all buffers. Fix tests that depend on a specific start context.
2017-08-03patch 8.0.0847: :argadd without argument can't handle space in file nameBram Moolenaar
Problem: :argadd without argument can't handle space in file name. (Harm te Hennepe) Solution: Escape the space. (Yasuhiro Matsumoto, closes #1917)
2017-07-16patch 8.0.0723: arglist test fails if file name case is ignoredBram Moolenaar
Problem: Arglist test fails if file name case is ignored. Solution: Wipe existing buffers, check for fname_case property.
2017-07-16patch 8.0.0721: :argedit can only have one argumentBram Moolenaar
Problem: :argedit can only have one argument. Solution: Allow for multiple arguments. (Christian Brabandt)
2017-03-16patch 8.0.0473: no test covering arg_all()Bram Moolenaar
Problem: No test covering arg_all(). Solution: Add a test expanding ##.
2017-03-09patch 8.0.0439: ":%argdel" gives an error for an empty arglistBram Moolenaar
Problem: Using ":%argdel" while the argument list is already empty gives an error. (Pavol Juhas) Solution: Don't give an error. (closes #1546)
2016-09-07patch 7.4.2343Bram Moolenaar
Problem: Too many old file tests. Solution: Turn several into new style tests. (Yegappan Lakshmanan)
2016-01-23patch 7.4.1161Bram Moolenaar
Problem: ":argadd" without argument is supposed to add the current buffer name to the arglist. Solution: Make it work as documented. (Coot, closes #577)
2016-01-19patch 7.4.1135Bram Moolenaar
Problem: One more arglist test fails on MS-Windows. Solution: Don't edit "Y" after editing "y".
2016-01-19patch 7.4.1134Bram Moolenaar
Problem: The arglist test fails on MS-Windows. Solution: Only check for failure of argedit on Unix.
2016-01-19patch 7.4.1132Bram Moolenaar
Problem: Old style tests for the argument list. Solution: Add more new style tests. (Yegappan Lakshmanan)
2016-01-17patch 7.4.1123Bram Moolenaar
Problem: Using ":argadd" when there are no arguments results in the second argument to be the current one. (Yegappan Lakshmanan) Solution: Correct the w_arg_idx value.
2016-01-17patch 7.4.1119Bram Moolenaar
Problem: argidx() has a wrong value after ":%argdelete". (Yegappan Lakshmanan) Solution: Correct the value of w_arg_idx. Add a test.