summaryrefslogtreecommitdiff
path: root/src/testdir
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-06-04 22:31:27 +0200
committerBram Moolenaar <Bram@vim.org>2016-06-04 22:31:27 +0200
commit28b942a064dd486cc241894b625ab72f5a5c6d1b (patch)
tree67e521ca9c1dc67d7948bf27f18f1f4cce12fa47 /src/testdir
parent8e31fd52ec8be6ef1dc600b637d5f099d55e1715 (diff)
downloadvim-git-28b942a064dd486cc241894b625ab72f5a5c6d1b.tar.gz
patch 7.4.1900v7.4.1900
Problem: Using CTRL-] in the help on "{address}." doesn't work. Solution: Recognize an item in {}. (Hirohito Higashi, closes #814)
Diffstat (limited to 'src/testdir')
-rw-r--r--src/testdir/test_help_tagjump.vim10
1 files changed, 10 insertions, 0 deletions
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']