summaryrefslogtreecommitdiff
path: root/src/testdir/test_syntax.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-01-17 17:44:46 +0100
committerBram Moolenaar <Bram@vim.org>2017-01-17 17:44:46 +0100
commitd61e8aaae57bd66279def479462bf11c22ec2f1c (patch)
tree63f71ce0190c9db4b430dd6ccc7c854b2aeae5ef /src/testdir/test_syntax.vim
parent58f60ca2fcd2858faac84e386b3ccf5ced75084d (diff)
downloadvim-git-d61e8aaae57bd66279def479462bf11c22ec2f1c.tar.gz
patch 8.0.0201: completion of highlight groups includes cleared namesv8.0.0201
Problem: When completing a group name for a highlight or syntax command cleared groups are included. Solution: Skip groups that have been cleared.
Diffstat (limited to 'src/testdir/test_syntax.vim')
-rw-r--r--src/testdir/test_syntax.vim28
1 files changed, 20 insertions, 8 deletions
diff --git a/src/testdir/test_syntax.vim b/src/testdir/test_syntax.vim
index c93f8b76d..232da75df 100644
--- a/src/testdir/test_syntax.vim
+++ b/src/testdir/test_syntax.vim
@@ -156,6 +156,12 @@ func Test_syntax_completion()
call feedkeys(":syn sync \<C-A>\<C-B>\"\<CR>", 'tx')
call assert_equal('"syn sync ccomment clear fromstart linebreaks= linecont lines= match maxlines= minlines= region', @:)
+ " Check that clearing "Aap" avoids it showing up before Boolean.
+ hi Aap ctermfg=blue
+ call feedkeys(":syn list \<C-A>\<C-B>\"\<CR>", 'tx')
+ call assert_match('^"syn list Aap Boolean Character ', @:)
+ hi clear Aap
+
call feedkeys(":syn list \<C-A>\<C-B>\"\<CR>", 'tx')
call assert_match('^"syn list Boolean Character ', @:)
@@ -192,11 +198,11 @@ func Test_syntax_arg_skipped()
call assert_match('conceal off', execute('syntax conceal'))
endif
- syntax region Tar start=/</ end=/>/
+ syntax region Bar start=/</ end=/>/
if 0
syntax region NotTest start=/</ end=/>/ contains=@Spell
endif
- call assert_match('Tar', execute('syntax'))
+ call assert_match('Bar', execute('syntax'))
call assert_notmatch('NotTest', execute('syntax'))
call assert_notmatch('Spell', execute('syntax'))
@@ -206,6 +212,8 @@ func Test_syntax_arg_skipped()
syntax rest
endif
call assert_equal(a, execute('hi Foo'))
+ hi clear Bar
+ hi clear Foo
set ft=tags
syn off
@@ -298,7 +306,9 @@ endfunc
func Test_invalid_arg()
call assert_fails('syntax case asdf', 'E390:')
- call assert_fails('syntax conceal asdf', 'E390:')
+ if has('conceal')
+ call assert_fails('syntax conceal asdf', 'E390:')
+ endif
call assert_fails('syntax spell asdf', 'E390:')
endfunc
@@ -313,13 +323,15 @@ endfunc
func Test_syn_clear()
syntax keyword Foo foo
- syntax keyword Tar tar
+ syntax keyword Bar tar
call assert_match('Foo', execute('syntax'))
- call assert_match('Tar', execute('syntax'))
+ call assert_match('Bar', execute('syntax'))
syn clear Foo
call assert_notmatch('Foo', execute('syntax'))
- call assert_match('Tar', execute('syntax'))
- syn clear Foo Tar
+ call assert_match('Bar', execute('syntax'))
+ syn clear Foo Bar
call assert_notmatch('Foo', execute('syntax'))
- call assert_notmatch('Tar', execute('syntax'))
+ call assert_notmatch('Bar', execute('syntax'))
+ hi clear Foo
+ hi clear Bar
endfunc