Skip to content

Commit 9f646c2

Browse files
committed
patch 8.2.2552: Vim9: no reason to consider "{{{{{{{{" a command
Problem: Vim9: no reason to consider "{{{{{{{{" a command. Solution: Just use "{". (issue #7904)
1 parent d0bce50 commit 9f646c2

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/ex_cmds.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1819,7 +1819,7 @@ EXCMD(CMD_rshift, ">", ex_operators,
18191819
EXCMD(CMD_at, "@", ex_at,
18201820
EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_NONWHITE_OK,
18211821
ADDR_LINES),
1822-
EXCMD(CMD_block, "{{{{{{{{", ex_block, // not found normally
1822+
EXCMD(CMD_block, "{", ex_block, // not found normally
18231823
0,
18241824
ADDR_NONE),
18251825
EXCMD(CMD_endblock, "}", ex_endblock,

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,8 @@ static char *(features[]) =
750750

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
2552,
753755
/**/
754756
2551,
755757
/**/

0 commit comments

Comments
 (0)