# HG changeset patch # User Christian Brabandt # Date 1465073104 -7200 # Node ID 6e80397a592ca3343df8231dbf82e224ac9631fd # Parent 70540cbb10a820c7cc5264847770d4df95bd6b2b commit https://github.com/vim/vim/commit/28b942a064dd486cc241894b625ab72f5a5c6d1b Author: Bram Moolenaar Date: Sat Jun 4 22:31:27 2016 +0200 patch 7.4.1900 Problem: Using CTRL-] in the help on "{address}." doesn't work. Solution: Recognize an item in {}. (Hirohito Higashi, closes https://github.com/vim/vim/issues/814) diff --git a/src/ex_cmds.c b/src/ex_cmds.c --- 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1900, +/**/ 1899, /**/ 1898,