From: Bram Moolenaar Date: Sat, 4 Jun 2016 20:31:27 +0000 (+0200) Subject: patch 7.4.1900 X-Git-Tag: v7.4.1900 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=28b942a064dd486cc241894b625ab72f5a5c6d1b;p=vim patch 7.4.1900 Problem: Using CTRL-] in the help on "{address}." doesn't work. Solution: Recognize an item in {}. (Hirohito Higashi, closes #814) --- diff --git a/src/ex_cmds.c b/src/ex_cmds.c index d83dc405c..12764b408 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -6216,6 +6216,9 @@ find_help_tags( */ if (*s == '\'' && s > arg && *arg == '\'') break; + /* Also '{' and '}'. */ + if (*s == '}' && s > arg && *arg == '{') + break; } *d = NUL; diff --git a/src/testdir/test_help_tagjump.vim b/src/testdir/test_help_tagjump.vim index 62076c39e..0f14ade6b 100644 --- a/src/testdir/test_help_tagjump.vim +++ b/src/testdir/test_help_tagjump.vim @@ -25,6 +25,16 @@ func Test_help_tagjump() call assert_equal("help", &filetype) call assert_true(getline('.') =~ '\*arglistid()\*') helpclose + + exec "help! 'autoindent'." + call assert_equal("help", &filetype) + call assert_true(getline('.') =~ "\\*'autoindent'\\*") + helpclose + + exec "help! {address}." + call assert_equal("help", &filetype) + call assert_true(getline('.') =~ '\*{address}\*') + helpclose endfunc let s:langs = ['en', 'ab', 'ja'] diff --git a/src/version.c b/src/version.c index b1f4fe462..adbf0edd4 100644 --- a/src/version.c +++ b/src/version.c @@ -753,6 +753,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1900, /**/ 1899, /**/