summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_arglist.vim
AgeCommit message (Collapse)Author
2020-03-10patch 8.2.0369: various Normal mode commands not fully testedv8.2.0369Bram Moolenaar
Problem: Various Normal mode commands not fully tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5751)
2020-02-21patch 8.2.0293: various Ex commands not sufficiently testedv8.2.0293Bram Moolenaar
Problem: Various Ex commands not sufficiently tested. Solution: Add more test cases. (Yegappan Lakshmanan, closes #5673)
2020-02-18patch 8.2.0275: some Ex code not covered by testsv8.2.0275Bram Moolenaar
Problem: Some Ex code not covered by tests. Solution: Add test cases. (Yegappan Lakshmanan, closes #5659)
2020-02-11patch 8.2.0243: insufficient code coverage for ex_docmd.c functionsv8.2.0243Bram Moolenaar
Problem: Insufficient code coverage for ex_docmd.c functions. Solution: Add more tests. (Yegappan Lakshmanan, closes #5618)
2019-08-31patch 8.1.1954: more functions can be used as a methodv8.1.1954Bram Moolenaar
Problem: More functions can be used as a method. Solution: Allow more functions to be used as a method.
2019-08-24patch 8.1.1924: using empty string for current buffer is unexpectedv8.1.1924Bram Moolenaar
Problem: Using empty string for current buffer is unexpected. Solution: Make the argument optional for bufname() and bufnr().
2019-08-18patch 8.1.1888: more functions can be used as methodsv8.1.1888Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
2019-08-03patch 8.1.1796: :argdo is not testedv8.1.1796Bram Moolenaar
Problem: :argdo is not tested Solution: Add a test.
2019-07-27patch 8.1.1760: extra line break for wrapping output of :argsv8.1.1760Bram Moolenaar
Problem: Extra line break for wrapping output of :args. Solution: Avoid the extra line break. (Daniel Hahler, closes #4737)
2019-07-23patch 8.1.1737: :args command that outputs one line gives more promptv8.1.1737Bram Moolenaar
Problem: :args command that outputs one line gives more prompt. Solution: Only output line break if needed. (Daniel Hahler, closes #4715)
2018-12-28patch 8.1.0653: arglist test fails on MS-windowsv8.1.0653Bram Moolenaar
Problem: Arglist test fails on MS-windows. Solution: Only use a file name with a double quote on Unix.
2018-12-28patch 8.1.0651: :args \"foo works like :args without argumentv8.1.0651Bram Moolenaar
Problem: :args \"foo works like :args without argument. Solution: Fix check for empty argument. (closes #3728)
2018-12-02patch 8.1.0559: command line completion not sufficiently testedv8.1.0559Bram Moolenaar
Problem: Command line completion not sufficiently tested. Solution: Add more tests. (Dominique Pelle, closes #3622)
2018-10-25patch 8.1.0493: argv() and argc() only work on the current argument listv8.1.0493Bram Moolenaar
Problem: argv() and argc() only work on the current argument list. Solution: Add a window ID argument. (Yegappan Lakshmanan, closes #832)
2018-09-24patch 8.1.0430: Xargadd file left behind after running testv8.1.0430Bram Moolenaar
Problem: Xargadd file left behind after running test. Solution: Delete the file. (Dominique Pelle)
2018-09-18patch 8.1.0404: accessing invalid memory with long argument namev8.1.0404Bram Moolenaar
Problem: Accessing invalid memory with long argument name. Solution: Use item_count instead of checking for a terminating NULL. (Dominique Pelle, closes #3444)
2018-08-31patch 8.1.0341: :argadd in empty buffer changes the buffer namev8.1.0341Bram Moolenaar
Problem: :argadd in empty buffer changes the buffer name. (Pavol Juhas) Solution: Don't re-use the current buffer when not going to edit the file. (closes #3397) Do re-use the current buffer for :next.
2018-04-24patch 8.0.1763: :argedit does not reuse an empty unnamed bufferv8.0.1763Bram 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 readv8.0.1738Bram 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 functionsv8.0.1224Bram 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 namev8.0.0847Bram 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 ignoredv8.0.0723Bram 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 argumentv8.0.0721Bram 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()v8.0.0473Bram 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 arglistv8.0.0439Bram 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.2343v7.4.2343Bram Moolenaar
Problem: Too many old file tests. Solution: Turn several into new style tests. (Yegappan Lakshmanan)
2016-01-23patch 7.4.1161v7.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.1135v7.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.1134v7.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.1132v7.4.1132Bram Moolenaar
Problem: Old style tests for the argument list. Solution: Add more new style tests. (Yegappan Lakshmanan)
2016-01-17patch 7.4.1123v7.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.1119v7.4.1119Bram Moolenaar
Problem: argidx() has a wrong value after ":%argdelete". (Yegappan Lakshmanan) Solution: Correct the value of w_arg_idx. Add a test.