]> granicus.if.org Git - vim/commitdiff
patch 8.0.0315: :help :[range] does not work v8.0.0315
authorBram Moolenaar <Bram@vim.org>
Thu, 9 Feb 2017 10:41:01 +0000 (11:41 +0100)
committerBram Moolenaar <Bram@vim.org>
Thu, 9 Feb 2017 10:41:01 +0000 (11:41 +0100)
Problem:    ":help :[range]" does not work. (Tony Mechelynck)
Solution:   Translate to insert a backslash.

src/ex_cmds.c
src/version.c

index 58a0186129e8362c6a0c04b9b7d3a74a9c695802..8fda8d491e844c6f0d332d1685be922afde4aa99 100644 (file)
@@ -6505,7 +6505,8 @@ find_help_tags(
                               "cpo-*", "/\\(\\)", "/\\%(\\)",
                               "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
                               "/\\?", "/\\z(\\)", "\\=", ":s\\=",
-                              "[count]", "[quotex]", "[range]",
+                              "[count]", "[quotex]",
+                              "[range]", ":[range]",
                               "[pattern]", "\\|", "\\%$",
                               "s/\\~", "s/\\U", "s/\\L",
                               "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
@@ -6514,7 +6515,8 @@ find_help_tags(
                               "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
                               "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
                               "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
-                              "\\[count]", "\\[quotex]", "\\[range]",
+                              "\\[count]", "\\[quotex]",
+                              "\\[range]", ":\\[range]",
                               "\\[pattern]", "\\\\bar", "/\\\\%\\$",
                               "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
                               "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
index 4da417b925b195756f0d906910ee859c5e2d7e57..71622392fb29ce2f690dfb1ff4c0e52f193e9e92 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    315,
 /**/
     314,
 /**/