summaryrefslogtreecommitdiffstats
path: root/src/ex_cmdidxs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-09-03 21:35:53 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-03 21:35:53 +0100
commit1d84f7608f1e41dad03b8cc7925895437775f7c0 (patch)
treecc276825566021a35b96f93e178e5f2ac621a84b /src/ex_cmdidxs.h
parent06d32a0c177e4166ff0491668cd459464bc2ef45 (diff)
patch 9.0.0370: cleaning up afterwards can make a function messyv9.0.0370
Problem: Cleaning up afterwards can make a function messy. Solution: Add the :defer command.
Diffstat (limited to 'src/ex_cmdidxs.h')
-rw-r--r--src/ex_cmdidxs.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/ex_cmdidxs.h b/src/ex_cmdidxs.h
index 065bf056f5..fd4b1550a2 100644
--- a/src/ex_cmdidxs.h
+++ b/src/ex_cmdidxs.h
@@ -9,28 +9,28 @@ static const unsigned short cmdidxs1[26] =
/* b */ 21,
/* c */ 45,
/* d */ 112,
- /* e */ 137,
- /* f */ 166,
- /* g */ 183,
- /* h */ 189,
- /* i */ 199,
- /* j */ 219,
- /* k */ 221,
- /* l */ 226,
- /* m */ 289,
- /* n */ 307,
- /* o */ 327,
- /* p */ 339,
- /* q */ 378,
- /* r */ 381,
- /* s */ 401,
- /* t */ 471,
- /* u */ 517,
- /* v */ 528,
- /* w */ 549,
- /* x */ 563,
- /* y */ 573,
- /* z */ 574
+ /* e */ 138,
+ /* f */ 167,
+ /* g */ 184,
+ /* h */ 190,
+ /* i */ 200,
+ /* j */ 220,
+ /* k */ 222,
+ /* l */ 227,
+ /* m */ 290,
+ /* n */ 308,
+ /* o */ 328,
+ /* p */ 340,
+ /* q */ 379,
+ /* r */ 382,
+ /* s */ 402,
+ /* t */ 472,
+ /* u */ 518,
+ /* v */ 529,
+ /* w */ 550,
+ /* x */ 564,
+ /* y */ 574,
+ /* z */ 575
};
/*
@@ -44,7 +44,7 @@ static const unsigned char cmdidxs2[26][26] =
/* 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 },
+ /* d */ { 0, 0, 0, 0, 0, 0, 0, 0, 9, 19, 0, 20, 0, 0, 21, 0, 0, 23, 24, 0, 0, 0, 0, 0, 0, 0 },
/* e */ { 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 9, 11, 12, 0, 0, 0, 0, 0, 0, 0, 23, 0, 24, 0, 0 },
/* f */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0 },
/* g */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 4, 5, 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 = 591;
+static const int command_count = 592;