And after the last one:
:+2argadd y a b c x y
There is no check for duplicates, it is possible to
- add a file to the argument list twice.
- The currently edited file is not changed.
+ add a file to the argument list twice. You can use
+ |:argdedupe| to fix it afterwards: >
+ :argadd *.txt | argdedupe
+< The currently edited file is not changed.
Note: you can also use this method: >
:args ## x
< This will add the "x" item and sort the new list.
+:argded[upe] *:argded* *:argdedupe*
+ Remove duplicate filenames from the argument list.
+ If your current file is a duplicate, your current file
+ will change to the original file index.
+
:argd[elete] {pattern} .. *:argd* *:argdelete* *E480* *E610*
Delete files from the argument list that match the
{pattern}s. {pattern} is used like a file pattern,
static const unsigned short cmdidxs1[26] =
{
/* a */ 0,
- /* b */ 20,
- /* c */ 44,
- /* d */ 111,
- /* e */ 136,
- /* f */ 164,
- /* g */ 181,
- /* h */ 187,
- /* i */ 196,
- /* j */ 216,
- /* k */ 218,
- /* l */ 223,
- /* m */ 286,
- /* n */ 304,
- /* o */ 324,
- /* p */ 336,
- /* q */ 375,
- /* r */ 378,
- /* s */ 398,
- /* t */ 468,
- /* u */ 514,
- /* v */ 525,
- /* w */ 546,
- /* x */ 560,
- /* y */ 570,
- /* z */ 571
+ /* b */ 21,
+ /* c */ 45,
+ /* d */ 112,
+ /* e */ 137,
+ /* f */ 165,
+ /* g */ 182,
+ /* h */ 188,
+ /* i */ 197,
+ /* j */ 217,
+ /* k */ 219,
+ /* l */ 224,
+ /* m */ 287,
+ /* n */ 305,
+ /* o */ 325,
+ /* p */ 337,
+ /* q */ 376,
+ /* r */ 379,
+ /* s */ 399,
+ /* t */ 469,
+ /* u */ 515,
+ /* v */ 526,
+ /* w */ 547,
+ /* x */ 561,
+ /* y */ 571,
+ /* z */ 572
};
/*
*/
static const unsigned char cmdidxs2[26][26] =
{ /* a b c d e f g h i j k l m n o p q r s t u v w x y z */
- /* a */ { 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 6, 7, 0, 0, 0, 8, 16, 0, 17, 0, 0, 0, 0, 0 },
+ /* a */ { 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 6, 7, 0, 0, 0, 8, 17, 0, 18, 0, 0, 0, 0, 0 },
/* b */ { 2, 0, 0, 5, 6, 8, 0, 0, 0, 0, 0, 9, 10, 11, 12, 13, 0, 14, 0, 0, 0, 0, 23, 0, 0, 0 },
/* c */ { 3, 12, 16, 18, 20, 22, 25, 0, 0, 0, 0, 33, 38, 41, 47, 57, 59, 60, 61, 0, 63, 0, 66, 0, 0, 0 },
/* d */ { 0, 0, 0, 0, 0, 0, 0, 0, 8, 18, 0, 19, 0, 0, 20, 0, 0, 22, 23, 0, 0, 0, 0, 0, 0, 0 },
/* z */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
};
-static const int command_count = 588;
+static const int command_count = 589;
bw! x
endfunc
+" Test for the :argdedupe command
+func Test_argdedupe()
+ call Reset_arglist()
+ argdedupe
+ call assert_equal([], argv())
+ args a a a aa b b a b aa
+ argdedupe
+ call assert_equal(['a', 'aa', 'b'], argv())
+ args a b c
+ argdedupe
+ call assert_equal(['a', 'b', 'c'], argv())
+ args a
+ argdedupe
+ call assert_equal(['a'], argv())
+ args a A b B
+ argdedupe
+ if has('fname_case')
+ call assert_equal(['a', 'A', 'b', 'B'], argv())
+ else
+ call assert_equal(['a', 'b'], argv())
+ endif
+ args a b a c a b
+ last
+ argdedupe
+ next
+ call assert_equal('c', expand('%:t'))
+ %argd
+endfunc
+
" Test for the :argdelete command
func Test_argdelete()
call Reset_arglist()