summaryrefslogtreecommitdiffstats
path: root/src/ex_cmdidxs.h
diff options
context:
space:
mode:
authorNir Lichtman <nir_lichtman@hotmail.com>2021-12-24 20:28:03 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-24 20:28:03 +0000
commit73a024209cbfbd5b39a2e974084d807c6131e2ed (patch)
tree3fc4d2207a59fd3b0bb04e92d1a282e64e61c4a2 /src/ex_cmdidxs.h
parent806da5176e9e9ab011d927c4ca33a8dde1769539 (diff)
patch 8.2.3888: the argument list may contain duplicatesv8.2.3888
Problem: The argument list may contain duplicates. Solution: Add the :argdedeupe command. (Nir Lichtman, closes #6235)
Diffstat (limited to 'src/ex_cmdidxs.h')
-rw-r--r--src/ex_cmdidxs.h54
1 files changed, 27 insertions, 27 deletions
diff --git a/src/ex_cmdidxs.h b/src/ex_cmdidxs.h
index 3ad1cd8ecf..b4743cd0e1 100644
--- a/src/ex_cmdidxs.h
+++ b/src/ex_cmdidxs.h
@@ -6,31 +6,31 @@
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
};
/*
@@ -41,7 +41,7 @@ static const unsigned short cmdidxs1[26] =
*/
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 },
@@ -69,4 +69,4 @@ static const unsigned char cmdidxs2[26][26] =
/* 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;