Skip to content

Commit 5032724

Browse files
committed
updated for version 7.4b.011
Problem: ":he \%(\)" does not work. (ZyX) Solution: Add an exception to the list.
1 parent 0c99918 commit 5032724

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/ex_cmds.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5924,14 +5924,14 @@ find_help_tags(arg, num_matches, matches, keep_lang)
59245924
int i;
59255925
static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
59265926
"/*", "/\\*", "\"*", "**",
5927-
"cpo-*", "/\\(\\)",
5927+
"cpo-*", "/\\(\\)", "/\\%(\\)",
59285928
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
59295929
"/\\?", "/\\z(\\)", "\\=", ":s\\=",
59305930
"[count]", "[quotex]", "[range]",
59315931
"[pattern]", "\\|", "\\%$"};
59325932
static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
59335933
"/star", "/\\\\star", "quotestar", "starstar",
5934-
"cpo-star", "/\\\\(\\\\)",
5934+
"cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
59355935
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
59365936
"/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
59375937
"\\[count]", "\\[quotex]", "\\[range]",

src/version.c

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

728728
static int included_patches[] =
729729
{ /* Add new patch number below this line */
730+
/**/
731+
11,
730732
/**/
731733
10,
732734
/**/

0 commit comments

Comments
 (0)