summaryrefslogtreecommitdiff
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-01-17 14:09:44 +0100
committerBram Moolenaar <Bram@vim.org>2013-01-17 14:09:44 +0100
commit117f2c4b91fb3675d56be36c1d972f0fb4fda13a (patch)
tree1871a12e4a978778985b79a93ce13be324a6281c /src/ex_cmds.c
parent802418d5eb5c98dcbe53390d1eceba92dd097aa4 (diff)
downloadvim-git-117f2c4b91fb3675d56be36c1d972f0fb4fda13a.tar.gz
updated for version 7.3.766v7.3.766
Problem: ":help cpo-*" jumps to the wrong place. Solution: Make it equivalent to ":help cpo-star".
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r--src/ex_cmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index a21740247..712ba4ff9 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -5849,14 +5849,14 @@ find_help_tags(arg, num_matches, matches, keep_lang)
int i;
static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
"/*", "/\\*", "\"*", "**",
- "/\\(\\)",
+ "cpo-*", "/\\(\\)",
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
"/\\?", "/\\z(\\)", "\\=", ":s\\=",
"[count]", "[quotex]", "[range]",
"[pattern]", "\\|", "\\%$"};
static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
"/star", "/\\\\star", "quotestar", "starstar",
- "/\\\\(\\\\)",
+ "cpo-star", "/\\\\(\\\\)",
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
"/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
"\\[count]", "\\[quotex]", "\\[range]",