summaryrefslogtreecommitdiffstats
path: root/src/ex_cmdidxs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-04-24 19:08:24 +0200
committerBram Moolenaar <Bram@vim.org>2021-04-24 19:08:24 +0200
commitbdc0f1c6986e5d64f647e0924a4de795b47c549a (patch)
treed314ca4f02d7e8e13072ebef2ed4ba92be403083 /src/ex_cmdidxs.h
parent96cf4ba8fb96e5778192d2dab7458b9a7da0a49d (diff)
patch 8.2.2806: Vim9: using "++nr" as a command might not workv8.2.2806
Problem: Vim9: using "++nr" as a command might not work. Solution: Do not recognize "++" and "--" in a following line as addition or subtraction.
Diffstat (limited to 'src/ex_cmdidxs.h')
-rw-r--r--src/ex_cmdidxs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmdidxs.h b/src/ex_cmdidxs.h
index 0d148d7d44..2696128af7 100644
--- a/src/ex_cmdidxs.h
+++ b/src/ex_cmdidxs.h
@@ -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 = 577;
+static const int command_count = 579;