From: Bram Moolenaar Date: Fri, 26 Feb 2021 20:56:47 +0000 (+0100) Subject: patch 8.2.2552: Vim9: no reason to consider "{{{{{{{{" a command X-Git-Tag: v8.2.2552 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9f646c2e1105f27484d7b008a29da554ff2c21b6;p=vim patch 8.2.2552: Vim9: no reason to consider "{{{{{{{{" a command Problem: Vim9: no reason to consider "{{{{{{{{" a command. Solution: Just use "{". (issue #7904) --- diff --git a/src/ex_cmds.h b/src/ex_cmds.h index 7888d6fee..d114fedb8 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -1819,7 +1819,7 @@ EXCMD(CMD_rshift, ">", ex_operators, EXCMD(CMD_at, "@", ex_at, EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_NONWHITE_OK, ADDR_LINES), -EXCMD(CMD_block, "{{{{{{{{", ex_block, // not found normally +EXCMD(CMD_block, "{", ex_block, // not found normally 0, ADDR_NONE), EXCMD(CMD_endblock, "}", ex_endblock, diff --git a/src/version.c b/src/version.c index 07c793d94..dc6a16c0c 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2552, /**/ 2551, /**/