Age | Commit message (Collapse) | Author |
|
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)
|
|
Problem: ":args" output is hard to read.
Solution: Make columns with the names if the output is more than one line.
|
|
Problem: Still interference between test functions.
Solution: Clear autocommands. Wipe all buffers. Fix tests that depend on a
specific start context.
|
|
Problem: :argadd without argument can't handle space in file name. (Harm te
Hennepe)
Solution: Escape the space. (Yasuhiro Matsumoto, closes #1917)
|
|
Problem: Arglist test fails if file name case is ignored.
Solution: Wipe existing buffers, check for fname_case property.
|
|
Problem: :argedit can only have one argument.
Solution: Allow for multiple arguments. (Christian Brabandt)
|
|
Problem: No test covering arg_all().
Solution: Add a test expanding ##.
|
|
Problem: Using ":%argdel" while the argument list is already empty gives an
error. (Pavol Juhas)
Solution: Don't give an error. (closes #1546)
|
|
Problem: Too many old file tests.
Solution: Turn several into new style tests. (Yegappan Lakshmanan)
|
|
Problem: ":argadd" without argument is supposed to add the current buffer
name to the arglist.
Solution: Make it work as documented. (Coot, closes #577)
|
|
Problem: One more arglist test fails on MS-Windows.
Solution: Don't edit "Y" after editing "y".
|
|
Problem: The arglist test fails on MS-Windows.
Solution: Only check for failure of argedit on Unix.
|
|
Problem: Old style tests for the argument list.
Solution: Add more new style tests. (Yegappan Lakshmanan)
|
|
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.
|
|
Problem: argidx() has a wrong value after ":%argdelete". (Yegappan
Lakshmanan)
Solution: Correct the value of w_arg_idx. Add a test.
|