Skip to content

Commit 18d9a1f

Browse files
committed
updated for version 7.3.628
Problem: ":open" does not allow for a !, which results in a confusing error message. (Shawn Wilson) Solution: Allow ! on ":open". (Christian Brabandt)
1 parent 4b89dba commit 18d9a1f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/ex_cmds.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ EX(CMD_nunmap, "nunmap", ex_unmap,
662662
EX(CMD_nunmenu, "nunmenu", ex_menu,
663663
EXTRA|TRLBAR|NOTRLCOM|USECTRLV|CMDWIN),
664664
EX(CMD_open, "open", ex_open,
665-
RANGE|EXTRA),
665+
RANGE|BANG|EXTRA),
666666
EX(CMD_oldfiles, "oldfiles", ex_oldfiles,
667667
BANG|TRLBAR|SBOXOK|CMDWIN),
668668
EX(CMD_omap, "omap", ex_map,

src/version.c

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

715715
static int included_patches[] =
716716
{ /* Add new patch number below this line */
717+
/**/
718+
628,
717719
/**/
718720
627,
719721
/**/

0 commit comments

Comments
 (0)