Skip to content

Commit a76f59d

Browse files
committed
patch 8.0.0315: :help :[range] does not work
Problem: ":help :[range]" does not work. (Tony Mechelynck) Solution: Translate to insert a backslash.
1 parent 65189a1 commit a76f59d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/ex_cmds.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6505,7 +6505,8 @@ find_help_tags(
65056505
"cpo-*", "/\\(\\)", "/\\%(\\)",
65066506
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
65076507
"/\\?", "/\\z(\\)", "\\=", ":s\\=",
6508-
"[count]", "[quotex]", "[range]",
6508+
"[count]", "[quotex]",
6509+
"[range]", ":[range]",
65096510
"[pattern]", "\\|", "\\%$",
65106511
"s/\\~", "s/\\U", "s/\\L",
65116512
"s/\\1", "s/\\2", "s/\\3", "s/\\9"};
@@ -6514,7 +6515,8 @@ find_help_tags(
65146515
"cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
65156516
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
65166517
"/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
6517-
"\\[count]", "\\[quotex]", "\\[range]",
6518+
"\\[count]", "\\[quotex]",
6519+
"\\[range]", ":\\[range]",
65186520
"\\[pattern]", "\\\\bar", "/\\\\%\\$",
65196521
"s/\\\\\\~", "s/\\\\U", "s/\\\\L",
65206522
"s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};

src/version.c

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

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
315,
767769
/**/
768770
314,
769771
/**/

0 commit comments

Comments
 (0)