0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.2.2982: Vim9: future commands are not reserved yet

Problem:    Vim9: future commands are not reserved yet.
Solution:   Add commands to be implemented later.  Make "this" a reserved
            name.
This commit is contained in:
Bram Moolenaar
2021-06-12 14:53:05 +02:00
parent 6654ca702c
commit 7423577180
6 changed files with 111 additions and 42 deletions

View File

@@ -979,6 +979,7 @@ static char *reserved[] = {
"true",
"false",
"null",
"this",
NULL
};