diff src/ex_cmds2.c @ 7726:f6311c321411 v7.4.1161

commit https://github.com/vim/vim/commit/2faa29f896252073b53f387406109e331fbbe5f8 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 23 23:02:34 2016 +0100 patch 7.4.1161 Problem: ":argadd" without argument is supposed to add the current buffer name to the arglist. Solution: Make it work as documented. (Coot, closes https://github.com/vim/vim/issues/577)
author Christian Brabandt <cb@256bit.org>
date Sat, 23 Jan 2016 23:15:05 +0100
parents 65b2d593c203
children af3c41a3c53f
line wrap: on
line diff
--- a/src/ex_cmds2.c
+++ b/src/ex_cmds2.c
@@ -2090,6 +2090,16 @@ do_arglist(str, what, after)
 #endif
 
     /*
+     * Set default argument for ":argadd" command.
+     */
+    if (what == AL_ADD && *str == NUL)
+    {
+	if (curbuf->b_ffname == NULL)
+	    return FAIL;
+	str = curbuf->b_fname;
+    }
+
+    /*
      * Collect all file name arguments in "new_ga".
      */
     if (get_arglist(&new_ga, str) == FAIL)