mirror of
https://github.com/neovim/neovim.git
synced 2025-09-30 15:08:35 +00:00
vim-patch:8.0.0316: :help z? does not work (#8134)
Problem: ":help z?" does not work. (Pavol Juhas)
Solution: Remove exception for z?.
dad7309dd2
This commit is contained in:

committed by
Justin M. Keyes

parent
f5b0f5e17f
commit
5ce8158a5d
@@ -4623,7 +4623,7 @@ int find_help_tags(char_u *arg, int *num_matches, char_u ***matches, int keep_la
|
|||||||
static char *(mtable[]) = {"*", "g*", "[*", "]*",
|
static char *(mtable[]) = {"*", "g*", "[*", "]*",
|
||||||
"/*", "/\\*", "\"*", "**",
|
"/*", "/\\*", "\"*", "**",
|
||||||
"/\\(\\)", "/\\%(\\)",
|
"/\\(\\)", "/\\%(\\)",
|
||||||
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
|
"?", ":?", "?<CR>", "g?", "g?g?", "g??",
|
||||||
"/\\?", "/\\z(\\)", "\\=", ":s\\=",
|
"/\\?", "/\\z(\\)", "\\=", ":s\\=",
|
||||||
"[count]", "[quotex]",
|
"[count]", "[quotex]",
|
||||||
"[range]", ":[range]",
|
"[range]", ":[range]",
|
||||||
@@ -4633,7 +4633,7 @@ int find_help_tags(char_u *arg, int *num_matches, char_u ***matches, int keep_la
|
|||||||
static char *(rtable[]) = {"star", "gstar", "[star", "]star",
|
static char *(rtable[]) = {"star", "gstar", "[star", "]star",
|
||||||
"/star", "/\\\\star", "quotestar", "starstar",
|
"/star", "/\\\\star", "quotestar", "starstar",
|
||||||
"/\\\\(\\\\)", "/\\\\%(\\\\)",
|
"/\\\\(\\\\)", "/\\\\%(\\\\)",
|
||||||
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
|
"?", ":?", "?<CR>", "g?", "g?g?", "g??",
|
||||||
"/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
|
"/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
|
||||||
"\\[count]", "\\[quotex]",
|
"\\[count]", "\\[quotex]",
|
||||||
"\\[range]", ":\\[range]",
|
"\\[range]", ":\\[range]",
|
||||||
|
Reference in New Issue
Block a user