diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-02-14 12:57:36 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-02-14 12:57:36 +0100 |
commit | 39f3b1411068ff187b4f9f482b2d6b2c1e7a7268 (patch) | |
tree | 7e5d52bcaee7087ff50014d564e33e2d3f873a64 /src/ex_cmdidxs.h | |
parent | 10ccfb2a17e736ace054b19dc712544b4e961671 (diff) | |
download | vim-git-39f3b1411068ff187b4f9f482b2d6b2c1e7a7268.tar.gz |
patch 8.2.2511: Vim9: cannot use Vim9 script syntax in some placesv8.2.2511
Problem: Vim9: cannot use Vim9 script syntax in some places.
Solution: Add the :vim9cmd command modifier. Incompatible: Makes ":vim9"
mean ":vim9cmd" instead of ":vim9script".
Diffstat (limited to 'src/ex_cmdidxs.h')
-rw-r--r-- | src/ex_cmdidxs.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ex_cmdidxs.h b/src/ex_cmdidxs.h index 290e9fa6b..8afc44535 100644 --- a/src/ex_cmdidxs.h +++ b/src/ex_cmdidxs.h @@ -27,10 +27,10 @@ static const unsigned short cmdidxs1[26] = /* t */ 458, /* u */ 503, /* v */ 514, - /* w */ 534, - /* x */ 548, - /* y */ 558, - /* z */ 559 + /* w */ 535, + /* x */ 549, + /* y */ 559, + /* z */ 560 }; /* @@ -62,11 +62,11 @@ static const unsigned char cmdidxs2[26][26] = /* s */ { 2, 6, 15, 0, 19, 23, 0, 25, 26, 0, 0, 29, 31, 35, 39, 41, 0, 50, 0, 51, 0, 63, 64, 0, 65, 0 }, /* t */ { 2, 0, 19, 0, 24, 26, 0, 27, 0, 28, 0, 29, 33, 36, 38, 39, 0, 40, 42, 0, 43, 0, 0, 0, 0, 0 }, /* u */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, - /* v */ { 1, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, 11, 14, 0, 0, 0, 0, 17, 0, 18, 0, 0, 0, 0, 0 }, + /* v */ { 1, 0, 0, 0, 2, 0, 0, 0, 5, 0, 0, 0, 12, 15, 0, 0, 0, 0, 18, 0, 19, 0, 0, 0, 0, 0 }, /* w */ { 2, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 8, 0, 9, 10, 0, 0, 0, 12, 13, 0, 0, 0, 0 }, /* x */ { 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 7, 0, 0, 8, 0, 0, 0, 0, 0 }, /* y */ { 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 }, /* 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 = 574; +static const int command_count = 575; |