We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91335e5 commit a5bc38bCopy full SHA for a5bc38b
3 files changed
src/ex_cmds.c
@@ -6583,7 +6583,7 @@ find_help_tags(
6583
static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
6584
"/*", "/\\*", "\"*", "**",
6585
"cpo-*", "/\\(\\)", "/\\%(\\)",
6586
- "?", ":?", "?<CR>", "g?", "g?g?", "g??",
+ "?", ":?", "-?", "?<CR>", "g?", "g?g?", "g??",
6587
"/\\?", "/\\z(\\)", "\\=", ":s\\=",
6588
"[count]", "[quotex]",
6589
"[range]", ":[range]",
@@ -6593,7 +6593,7 @@ find_help_tags(
6593
static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
6594
"/star", "/\\\\star", "quotestar", "starstar",
6595
"cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
6596
6597
"/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
6598
"\\[count]", "\\[quotex]",
6599
"\\[range]", ":\\[range]",
src/testdir/test_help_tagjump.vim
@@ -26,6 +26,11 @@ func Test_help_tagjump()
26
call assert_true(getline('.') =~ '\*:?\*')
27
helpclose
28
29
+ help -?
30
+ call assert_equal("help", &filetype)
31
+ call assert_true(getline('.') =~ '\*-?\*')
32
+ helpclose
33
+
34
help FileW*Post
35
call assert_equal("help", &filetype)
36
call assert_true(getline('.') =~ '\*FileWritePost\*')
src/version.c
@@ -794,6 +794,8 @@ static char *(features[]) =
794
795
static int included_patches[] =
796
{ /* Add new patch number below this line */
797
+/**/
798
+ 231,
799
/**/
800
230,
801
0 commit comments