annotate src/testdir/test_syntax.vim @ 20625:116c7bd5e980 v8.2.0866

patch 8.2.0866: not enough tests for buffer writing Commit: https://github.com/vim/vim/commit/494e9069cb32620f7688a7cb128a3feff827639e Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 31 21:28:02 2020 +0200 patch 8.2.0866: not enough tests for buffer writing Problem: Not enough tests for buffer writing. Solution: Add more tests. Use CheckRunVimInTerminal in more places. (Yegappan Lakshmanan, closes #6167)
author Bram Moolenaar <Bram@vim.org>
date Sun, 31 May 2020 21:30:03 +0200
parents 99b6e6bf48bf
children f4455c71a8aa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7687
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 " Test for syntax and syntax iskeyword option
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2
17089
8e9e9124c7a2 patch 8.1.1544: some balloon tests don't run when they can
Bram Moolenaar <Bram@vim.org>
parents: 17049
diff changeset
3 source check.vim
8e9e9124c7a2 patch 8.1.1544: some balloon tests don't run when they can
Bram Moolenaar <Bram@vim.org>
parents: 17049
diff changeset
4 CheckFeature syntax
7687
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
5
11553
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
6 source view_util.vim
13329
424321d6eea7 patch 8.0.1539: no test for the popup menu positioning
Christian Brabandt <cb@256bit.org>
parents: 13322
diff changeset
7 source screendump.vim
11553
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
8
7687
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9 func GetSyntaxItem(pat)
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
10 let c = ''
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
11 let a = ['a', getreg('a'), getregtype('a')]
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
12 0
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
13 redraw!
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
14 call search(a:pat, 'W')
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
15 let synid = synID(line('.'), col('.'), 1)
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
16 while synid == synID(line('.'), col('.'), 1)
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
17 norm! v"ay
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
18 " stop at whitespace
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
19 if @a =~# '\s'
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
20 break
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
21 endif
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
22 let c .= @a
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
23 norm! l
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
24 endw
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
25 call call('setreg', a)
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
26 0
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
27 return c
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
28 endfunc
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
29
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
30 func Test_syn_iskeyword()
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
31 new
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
32 call setline(1, [
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
33 \ 'CREATE TABLE FOOBAR(',
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
34 \ ' DLTD_BY VARCHAR2(100)',
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
35 \ ');',
16376
3b5d401a58ce patch 8.1.1193: typos and small problems in test files
Bram Moolenaar <Bram@vim.org>
parents: 15097
diff changeset
36 \ ''])
7687
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
37
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
38 syntax on
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
39 set ft=sql
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
40 syn match SYN /C\k\+\>/
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
41 hi link SYN ErrorMsg
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
42 call assert_equal('DLTD_BY', GetSyntaxItem('DLTD'))
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
43 /\<D\k\+\>/:norm! ygn
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
44 call assert_equal('DLTD_BY', @0)
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
45 redir @c
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
46 syn iskeyword
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
47 redir END
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
48 call assert_equal("\nsyntax iskeyword not set", @c)
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
49
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
50 syn iskeyword @,48-57,_,192-255
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
51 redir @c
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
52 syn iskeyword
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
53 redir END
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
54 call assert_equal("\nsyntax iskeyword @,48-57,_,192-255", @c)
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
55
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
56 setlocal isk-=_
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
57 call assert_equal('DLTD_BY', GetSyntaxItem('DLTD'))
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
58 /\<D\k\+\>/:norm! ygn
10476
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
59 let b2 = @0
7687
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
60 call assert_equal('DLTD', @0)
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
61
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
62 syn iskeyword clear
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
63 redir @c
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
64 syn iskeyword
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
65 redir END
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
66 call assert_equal("\nsyntax iskeyword not set", @c)
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
67
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
68 quit!
61354fabf8a2 commit https://github.com/vim/vim/commit/b8060fe862f684b591f9ac679eac5b2594d6c5a0
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
69 endfunc
8937
da4f6e238374 commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
70
da4f6e238374 commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
71 func Test_syntax_after_reload()
da4f6e238374 commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
72 split Xsomefile
da4f6e238374 commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
73 call setline(1, ['hello', 'there'])
da4f6e238374 commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
74 w!
da4f6e238374 commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
75 only!
da4f6e238374 commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
76 setl filetype=hello
da4f6e238374 commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
77 au FileType hello let g:gotit = 1
da4f6e238374 commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
78 call assert_false(exists('g:gotit'))
da4f6e238374 commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
79 edit other
da4f6e238374 commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
80 buf Xsomefile
da4f6e238374 commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
81 call assert_equal('hello', &filetype)
da4f6e238374 commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
82 call assert_true(exists('g:gotit'))
da4f6e238374 commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
83 call delete('Xsomefile')
da4f6e238374 commit https://github.com/vim/vim/commit/c3691332f72169c486066200c0f3935418364900
Christian Brabandt <cb@256bit.org>
parents: 7687
diff changeset
84 endfunc
10476
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
85
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
86 func Test_syntime()
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
87 if !has('profile')
10478
ea1beefcd664 commit https://github.com/vim/vim/commit/4c8980b717f73042f1d625ee255fa74eddb989ba
Christian Brabandt <cb@256bit.org>
parents: 10476
diff changeset
88 return
10476
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
89 endif
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
90
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
91 syntax on
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
92 syntime on
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
93 let a = execute('syntime report')
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
94 call assert_equal("\nNo Syntax items defined for this buffer", a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
95
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
96 view ../memfile_test.c
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
97 setfiletype cpp
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
98 redraw
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
99 let a = execute('syntime report')
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
100 call assert_match('^ TOTAL *COUNT *MATCH *SLOWEST *AVERAGE *NAME *PATTERN', a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
101 call assert_match(' \d*\.\d* \+[^0]\d* .* cppRawString ', a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
102 call assert_match(' \d*\.\d* \+[^0]\d* .* cppNumber ', a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
103
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
104 syntime off
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
105 syntime clear
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
106 let a = execute('syntime report')
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
107 call assert_match('^ TOTAL *COUNT *MATCH *SLOWEST *AVERAGE *NAME *PATTERN', a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
108 call assert_notmatch('.* cppRawString *', a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
109 call assert_notmatch('.* cppNumber*', a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
110 call assert_notmatch('[1-9]', a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
111
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
112 call assert_fails('syntime abc', 'E475')
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
113
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
114 syntax clear
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
115 let a = execute('syntime report')
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
116 call assert_equal("\nNo Syntax items defined for this buffer", a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
117
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
118 bd
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
119 endfunc
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
120
15097
1946487c74ba patch 8.1.0559: command line completion not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 14161
diff changeset
121 func Test_syntime_completion()
1946487c74ba patch 8.1.0559: command line completion not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 14161
diff changeset
122 if !has('profile')
1946487c74ba patch 8.1.0559: command line completion not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 14161
diff changeset
123 return
1946487c74ba patch 8.1.0559: command line completion not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 14161
diff changeset
124 endif
1946487c74ba patch 8.1.0559: command line completion not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 14161
diff changeset
125
1946487c74ba patch 8.1.0559: command line completion not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 14161
diff changeset
126 call feedkeys(":syntime \<C-A>\<C-B>\"\<CR>", 'tx')
1946487c74ba patch 8.1.0559: command line completion not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 14161
diff changeset
127 call assert_equal('"syntime clear off on report', @:)
1946487c74ba patch 8.1.0559: command line completion not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 14161
diff changeset
128 endfunc
1946487c74ba patch 8.1.0559: command line completion not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 14161
diff changeset
129
10476
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
130 func Test_syntax_list()
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
131 syntax on
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
132 let a = execute('syntax list')
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
133 call assert_equal("\nNo Syntax items defined for this buffer", a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
134
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
135 view ../memfile_test.c
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
136 setfiletype c
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
137
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
138 let a = execute('syntax list')
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
139 call assert_match('cInclude*', a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
140 call assert_match('cDefine', a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
141
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
142 let a = execute('syntax list cDefine')
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
143 call assert_notmatch('cInclude*', a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
144 call assert_match('cDefine', a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
145 call assert_match(' links to Macro$', a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
146
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
147 call assert_fails('syntax list ABCD', 'E28:')
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
148 call assert_fails('syntax list @ABCD', 'E392:')
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
149
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
150 syntax clear
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
151 let a = execute('syntax list')
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
152 call assert_equal("\nNo Syntax items defined for this buffer", a)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
153
20109
e82996ad131f patch 8.2.0610: some tests are still old style
Bram Moolenaar <Bram@vim.org>
parents: 20101
diff changeset
154 syntax keyword Type int containedin=g1 skipwhite skipempty skipnl nextgroup=Abc
e82996ad131f patch 8.2.0610: some tests are still old style
Bram Moolenaar <Bram@vim.org>
parents: 20101
diff changeset
155 let exp = "Type xxx containedin=g1 nextgroup=Abc skipnl skipwhite skipempty int"
e82996ad131f patch 8.2.0610: some tests are still old style
Bram Moolenaar <Bram@vim.org>
parents: 20101
diff changeset
156 call assert_equal(exp, split(execute("syntax list"), "\n")[1])
e82996ad131f patch 8.2.0610: some tests are still old style
Bram Moolenaar <Bram@vim.org>
parents: 20101
diff changeset
157
10476
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
158 bd
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
159 endfunc
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
160
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
161 func Test_syntax_completion()
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
162 call feedkeys(":syn \<C-A>\<C-B>\"\<CR>", 'tx')
20623
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
163 call assert_equal('"syn case clear cluster conceal enable foldlevel include iskeyword keyword list manual match off on region reset spell sync', @:)
10476
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
164
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
165 call feedkeys(":syn case \<C-A>\<C-B>\"\<CR>", 'tx')
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
166 call assert_equal('"syn case ignore match', @:)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
167
10534
1c6db35e3527 commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents: 10478
diff changeset
168 call feedkeys(":syn spell \<C-A>\<C-B>\"\<CR>", 'tx')
1c6db35e3527 commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents: 10478
diff changeset
169 call assert_equal('"syn spell default notoplevel toplevel', @:)
1c6db35e3527 commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents: 10478
diff changeset
170
1c6db35e3527 commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents: 10478
diff changeset
171 call feedkeys(":syn sync \<C-A>\<C-B>\"\<CR>", 'tx')
1c6db35e3527 commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents: 10478
diff changeset
172 call assert_equal('"syn sync ccomment clear fromstart linebreaks= linecont lines= match maxlines= minlines= region', @:)
1c6db35e3527 commit https://github.com/vim/vim/commit/2d02839050a2557bf36dab37ccd9f92168a757d1
Christian Brabandt <cb@256bit.org>
parents: 10478
diff changeset
173
10624
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
174 " Check that clearing "Aap" avoids it showing up before Boolean.
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
175 hi Aap ctermfg=blue
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
176 call feedkeys(":syn list \<C-A>\<C-B>\"\<CR>", 'tx')
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
177 call assert_match('^"syn list Aap Boolean Character ', @:)
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
178 hi clear Aap
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
179
10476
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
180 call feedkeys(":syn list \<C-A>\<C-B>\"\<CR>", 'tx')
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
181 call assert_match('^"syn list Boolean Character ', @:)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
182
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
183 call feedkeys(":syn match \<C-A>\<C-B>\"\<CR>", 'tx')
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
184 call assert_match('^"syn match Boolean Character ', @:)
751851a84c41 commit https://github.com/vim/vim/commit/73b484c4da00011317dc68ada4f5dfc6515ad263
Christian Brabandt <cb@256bit.org>
parents: 8937
diff changeset
185 endfunc
10618
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
186
18977
5bef1043abff patch 8.2.0049: command line completion not fully tested
Bram Moolenaar <Bram@vim.org>
parents: 18392
diff changeset
187 func Test_echohl_completion()
5bef1043abff patch 8.2.0049: command line completion not fully tested
Bram Moolenaar <Bram@vim.org>
parents: 18392
diff changeset
188 call feedkeys(":echohl no\<C-A>\<C-B>\"\<CR>", 'tx')
5bef1043abff patch 8.2.0049: command line completion not fully tested
Bram Moolenaar <Bram@vim.org>
parents: 18392
diff changeset
189 call assert_equal('"echohl NonText Normal none', @:)
5bef1043abff patch 8.2.0049: command line completion not fully tested
Bram Moolenaar <Bram@vim.org>
parents: 18392
diff changeset
190 endfunc
5bef1043abff patch 8.2.0049: command line completion not fully tested
Bram Moolenaar <Bram@vim.org>
parents: 18392
diff changeset
191
10618
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
192 func Test_syntax_arg_skipped()
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
193 syn clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
194 syntax case ignore
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
195 if 0
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
196 syntax case match
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
197 endif
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
198 call assert_match('case ignore', execute('syntax case'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
199
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
200 syn keyword Foo foo
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
201 call assert_match('Foo', execute('syntax'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
202 syn clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
203 call assert_match('case match', execute('syntax case'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
204 call assert_notmatch('Foo', execute('syntax'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
205
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
206 if has('conceal')
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
207 syn clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
208 syntax conceal on
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
209 if 0
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
210 syntax conceal off
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
211 endif
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
212 call assert_match('conceal on', execute('syntax conceal'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
213 syn clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
214 call assert_match('conceal off', execute('syntax conceal'))
10622
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
215
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
216 syntax conceal on
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
217 syntax conceal off
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
218 call assert_match('conceal off', execute('syntax conceal'))
10618
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
219 endif
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
220
10624
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
221 syntax region Bar start=/</ end=/>/
10618
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
222 if 0
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
223 syntax region NotTest start=/</ end=/>/ contains=@Spell
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
224 endif
10624
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
225 call assert_match('Bar', execute('syntax'))
10618
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
226 call assert_notmatch('NotTest', execute('syntax'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
227 call assert_notmatch('Spell', execute('syntax'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
228
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
229 hi Foo ctermfg=blue
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
230 let a = execute('hi Foo')
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
231 if 0
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
232 syntax rest
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
233 endif
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
234 call assert_equal(a, execute('hi Foo'))
10624
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
235 hi clear Bar
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
236 hi clear Foo
10618
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
237
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
238 set ft=tags
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
239 syn off
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
240 if 0
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
241 syntax enable
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
242 endif
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
243 call assert_match('No Syntax items defined', execute('syntax'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
244 syntax enable
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
245 call assert_match('tagComment', execute('syntax'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
246 set ft=
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
247
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
248 syn clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
249 if 0
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
250 syntax include @Spell nothing
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
251 endif
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
252 call assert_notmatch('Spell', execute('syntax'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
253
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
254 syn clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
255 syn iskeyword 48-57,$,_
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
256 call assert_match('48-57,$,_', execute('syntax iskeyword'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
257 if 0
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
258 syn clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
259 syn iskeyword clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
260 endif
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
261 call assert_match('48-57,$,_', execute('syntax iskeyword'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
262 syn iskeyword clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
263 call assert_match('not set', execute('syntax iskeyword'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
264 syn iskeyword 48-57,$,_
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
265 syn clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
266 call assert_match('not set', execute('syntax iskeyword'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
267
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
268 syn clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
269 syn keyword Foo foo
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
270 if 0
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
271 syn keyword NotAdded bar
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
272 endif
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
273 call assert_match('Foo', execute('syntax'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
274 call assert_notmatch('NotAdded', execute('highlight'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
275
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
276 syn clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
277 syn keyword Foo foo
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
278 call assert_match('Foo', execute('syntax'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
279 call assert_match('Foo', execute('syntax list'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
280 call assert_notmatch('Foo', execute('if 0 | syntax | endif'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
281 call assert_notmatch('Foo', execute('if 0 | syntax list | endif'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
282
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
283 syn clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
284 syn match Fopi /asdf/
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
285 if 0
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
286 syn match Fopx /asdf/
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
287 endif
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
288 call assert_match('Fopi', execute('syntax'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
289 call assert_notmatch('Fopx', execute('syntax'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
290
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
291 syn clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
292 syn spell toplevel
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
293 call assert_match('spell toplevel', execute('syntax spell'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
294 if 0
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
295 syn spell notoplevel
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
296 endif
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
297 call assert_match('spell toplevel', execute('syntax spell'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
298 syn spell notoplevel
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
299 call assert_match('spell notoplevel', execute('syntax spell'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
300 syn spell default
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
301 call assert_match('spell default', execute('syntax spell'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
302
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
303 syn clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
304 if 0
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
305 syntax cluster Spell
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
306 endif
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
307 call assert_notmatch('Spell', execute('syntax'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
308
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
309 syn clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
310 syn keyword Foo foo
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
311 syn sync ccomment
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
312 syn sync maxlines=5
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
313 if 0
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
314 syn sync maxlines=11
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
315 endif
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
316 call assert_match('on C-style comments', execute('syntax sync'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
317 call assert_match('maximal 5 lines', execute('syntax sync'))
10622
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
318 syn sync clear
10618
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
319 if 0
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
320 syn sync ccomment
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
321 endif
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
322 call assert_notmatch('on C-style comments', execute('syntax sync'))
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
323
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
324 syn clear
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
325 endfunc
4ee16e5e2e26 patch 8.0.0198: some syntax arguments take effect even after "if 0"
Christian Brabandt <cb@256bit.org>
parents: 10534
diff changeset
326
20101
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
327 " Check for an error. Used when multiple errors are thrown and we are checking
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
328 " for an earliest error.
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
329 func AssertFails(cmd, errcode)
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
330 let save_exception = ''
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
331 try
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
332 exe a:cmd
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
333 catch
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
334 let save_exception = v:exception
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
335 endtry
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
336 call assert_match(a:errcode, save_exception)
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
337 endfunc
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
338
11354
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
339 func Test_syntax_invalid_arg()
10622
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
340 call assert_fails('syntax case asdf', 'E390:')
10624
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
341 if has('conceal')
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
342 call assert_fails('syntax conceal asdf', 'E390:')
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
343 endif
10622
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
344 call assert_fails('syntax spell asdf', 'E390:')
11354
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
345 call assert_fails('syntax clear @ABCD', 'E391:')
20101
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
346 call assert_fails('syntax include random_file', 'E484:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
347 call assert_fails('syntax include <afile>', 'E495:')
11354
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
348 call assert_fails('syntax sync x', 'E404:')
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
349 call assert_fails('syntax keyword Abc a[', 'E789:')
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
350 call assert_fails('syntax keyword Abc a[bc]d', 'E890:')
20101
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
351 call assert_fails('syntax cluster Abc add=A add=', 'E475:')
19950
9cbe3a4f1492 patch 8.2.0531: various errors not tested
Bram Moolenaar <Bram@vim.org>
parents: 19783
diff changeset
352
9cbe3a4f1492 patch 8.2.0531: various errors not tested
Bram Moolenaar <Bram@vim.org>
parents: 19783
diff changeset
353 " Test for too many \z\( and unmatched \z\(
9cbe3a4f1492 patch 8.2.0531: various errors not tested
Bram Moolenaar <Bram@vim.org>
parents: 19783
diff changeset
354 " Not able to use assert_fails() here because both E50:/E879: and E475:
9cbe3a4f1492 patch 8.2.0531: various errors not tested
Bram Moolenaar <Bram@vim.org>
parents: 19783
diff changeset
355 " messages are emitted.
9cbe3a4f1492 patch 8.2.0531: various errors not tested
Bram Moolenaar <Bram@vim.org>
parents: 19783
diff changeset
356 set regexpengine=1
20101
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
357 call AssertFails("syntax region MyRegion start='\\z\\(' end='\\*/'", 'E52:')
19950
9cbe3a4f1492 patch 8.2.0531: various errors not tested
Bram Moolenaar <Bram@vim.org>
parents: 19783
diff changeset
358
20101
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
359 let cmd = "syntax region MyRegion start='"
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
360 let cmd ..= repeat("\\z\\(.\\)", 10) .. "' end='\*/'"
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
361 call AssertFails(cmd, 'E50:')
19950
9cbe3a4f1492 patch 8.2.0531: various errors not tested
Bram Moolenaar <Bram@vim.org>
parents: 19783
diff changeset
362
9cbe3a4f1492 patch 8.2.0531: various errors not tested
Bram Moolenaar <Bram@vim.org>
parents: 19783
diff changeset
363 set regexpengine=2
20101
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
364 call AssertFails("syntax region MyRegion start='\\z\\(' end='\\*/'", 'E54:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
365
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
366 let cmd = "syntax region MyRegion start='"
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
367 let cmd ..= repeat("\\z\\(.\\)", 10) .. "' end='\*/'"
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
368 call AssertFails(cmd, 'E879:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
369 set regexpengine&
19950
9cbe3a4f1492 patch 8.2.0531: various errors not tested
Bram Moolenaar <Bram@vim.org>
parents: 19783
diff changeset
370
20101
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
371 call AssertFails('syntax keyword cMyItem grouphere G1', 'E393:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
372 call AssertFails('syntax sync match Abc grouphere MyItem "abc"', 'E394:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
373 call AssertFails('syn keyword Type contains int', 'E395:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
374 call assert_fails('syntax include @Xxx', 'E397:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
375 call AssertFails('syntax region X start', 'E398:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
376 call assert_fails('syntax region X start="{"', 'E399:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
377 call AssertFails('syntax cluster contains=Abc', 'E400:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
378 call AssertFails("syntax match Character /'.'", 'E401:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
379 call AssertFails("syntax match Character /'.'/a", 'E402:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
380 call assert_fails('syntax sync linecont /pat', 'E404:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
381 call assert_fails('syntax sync linecont', 'E404:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
382 call assert_fails('syntax sync linecont /pat1/ linecont /pat2/', 'E403:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
383 call assert_fails('syntax sync minlines=a', 'E404:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
384 call AssertFails('syntax match ABC /x/ contains=', 'E406:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
385 call AssertFails("syntax match Character contains /'.'/", 'E405:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
386 call AssertFails('syntax match ccFoo "Foo" nextgroup=ALLBUT,F', 'E407:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
387 call AssertFails('syntax region Block start="{" contains=F,ALLBUT', 'E408:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
388 call AssertFails("syntax match Characters contains=a.*x /'.'/", 'E409:')
10622
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
389 endfunc
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
390
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
391 func Test_syn_sync()
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
392 syntax region HereGroup start=/this/ end=/that/
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
393 syntax sync match SyncHere grouphere HereGroup "pattern"
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
394 call assert_match('SyncHere', execute('syntax sync'))
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
395 syn sync clear
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
396 call assert_notmatch('SyncHere', execute('syntax sync'))
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
397 syn clear
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
398 endfunc
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
399
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
400 func Test_syn_clear()
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
401 syntax keyword Foo foo
10624
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
402 syntax keyword Bar tar
10622
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
403 call assert_match('Foo', execute('syntax'))
10624
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
404 call assert_match('Bar', execute('syntax'))
11254
918942a3b0ef patch 8.0.0513: getting name of cleared highlight group is wrong
Christian Brabandt <cb@256bit.org>
parents: 10626
diff changeset
405 call assert_equal('Foo', synIDattr(hlID("Foo"), "name"))
10622
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
406 syn clear Foo
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
407 call assert_notmatch('Foo', execute('syntax'))
10624
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
408 call assert_match('Bar', execute('syntax'))
11254
918942a3b0ef patch 8.0.0513: getting name of cleared highlight group is wrong
Christian Brabandt <cb@256bit.org>
parents: 10626
diff changeset
409 call assert_equal('Foo', synIDattr(hlID("Foo"), "name"))
10624
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
410 syn clear Foo Bar
10622
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
411 call assert_notmatch('Foo', execute('syntax'))
10624
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
412 call assert_notmatch('Bar', execute('syntax'))
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
413 hi clear Foo
11254
918942a3b0ef patch 8.0.0513: getting name of cleared highlight group is wrong
Christian Brabandt <cb@256bit.org>
parents: 10626
diff changeset
414 call assert_equal('Foo', synIDattr(hlID("Foo"), "name"))
10624
5ac9d7920f11 patch 8.0.0201: completion of highlight groups includes cleared names
Christian Brabandt <cb@256bit.org>
parents: 10622
diff changeset
415 hi clear Bar
20101
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
416 call assert_fails('syntax clear invalid_syngroup', 'E28:')
10622
bcacc849852a patch 8.0.0200: some syntax arguments are not tested
Christian Brabandt <cb@256bit.org>
parents: 10618
diff changeset
417 endfunc
10626
37b1197fdd6f patch 8.0.0202: no test for invalid syntax group name
Christian Brabandt <cb@256bit.org>
parents: 10624
diff changeset
418
37b1197fdd6f patch 8.0.0202: no test for invalid syntax group name
Christian Brabandt <cb@256bit.org>
parents: 10624
diff changeset
419 func Test_invalid_name()
37b1197fdd6f patch 8.0.0202: no test for invalid syntax group name
Christian Brabandt <cb@256bit.org>
parents: 10624
diff changeset
420 syn clear
37b1197fdd6f patch 8.0.0202: no test for invalid syntax group name
Christian Brabandt <cb@256bit.org>
parents: 10624
diff changeset
421 syn keyword Nop yes
37b1197fdd6f patch 8.0.0202: no test for invalid syntax group name
Christian Brabandt <cb@256bit.org>
parents: 10624
diff changeset
422 call assert_fails("syntax keyword Wr\x17ong bar", 'E669:')
37b1197fdd6f patch 8.0.0202: no test for invalid syntax group name
Christian Brabandt <cb@256bit.org>
parents: 10624
diff changeset
423 syntax keyword @Wrong bar
37b1197fdd6f patch 8.0.0202: no test for invalid syntax group name
Christian Brabandt <cb@256bit.org>
parents: 10624
diff changeset
424 call assert_match('W18:', execute('1messages'))
37b1197fdd6f patch 8.0.0202: no test for invalid syntax group name
Christian Brabandt <cb@256bit.org>
parents: 10624
diff changeset
425 syn clear
37b1197fdd6f patch 8.0.0202: no test for invalid syntax group name
Christian Brabandt <cb@256bit.org>
parents: 10624
diff changeset
426 hi clear Nop
37b1197fdd6f patch 8.0.0202: no test for invalid syntax group name
Christian Brabandt <cb@256bit.org>
parents: 10624
diff changeset
427 hi clear @Wrong
37b1197fdd6f patch 8.0.0202: no test for invalid syntax group name
Christian Brabandt <cb@256bit.org>
parents: 10624
diff changeset
428 endfunc
11345
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
429
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
430 func Test_ownsyntax()
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
431 new Xfoo
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
432 call setline(1, '#define FOO')
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
433 syntax on
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
434 set filetype=c
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
435 ownsyntax perl
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
436 call assert_equal('perlComment', synIDattr(synID(line('.'), col('.'), 1), 'name'))
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
437 call assert_equal('c', b:current_syntax)
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
438 call assert_equal('perl', w:current_syntax)
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
439
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
440 " A new split window should have the original syntax.
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
441 split
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
442 call assert_equal('cDefine', synIDattr(synID(line('.'), col('.'), 1), 'name'))
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
443 call assert_equal('c', b:current_syntax)
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
444 call assert_equal(0, exists('w:current_syntax'))
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
445
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
446 wincmd x
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
447 call assert_equal('perlComment', synIDattr(synID(line("."), col("."), 1), "name"))
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
448
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
449 syntax off
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
450 set filetype&
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
451 %bw!
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
452 endfunc
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
453
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
454 func Test_ownsyntax_completion()
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
455 call feedkeys(":ownsyntax java\<C-A>\<C-B>\"\<CR>", 'tx')
17869
70f53ec4db93 patch 8.1.1931: syntax test fails
Bram Moolenaar <Bram@vim.org>
parents: 17657
diff changeset
456 call assert_equal('"ownsyntax java javacc javascript javascriptreact', @:)
11345
329653a02657 patch 8.0.0558: :ownsyntax is not tested
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
457 endfunc
11354
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
458
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
459 func Test_highlight_invalid_arg()
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
460 if has('gui_running')
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
461 call assert_fails('hi XXX guifg=xxx', 'E254:')
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
462 endif
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
463 call assert_fails('hi DoesNotExist', 'E411:')
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
464 call assert_fails('hi link', 'E412:')
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
465 call assert_fails('hi link a', 'E412:')
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
466 call assert_fails('hi link a b c', 'E413:')
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
467 call assert_fails('hi XXX =', 'E415:')
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
468 call assert_fails('hi XXX cterm', 'E416:')
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
469 call assert_fails('hi XXX cterm=', 'E417:')
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
470 call assert_fails('hi XXX cterm=DoesNotExist', 'E418:')
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
471 call assert_fails('hi XXX ctermfg=DoesNotExist', 'E421:')
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
472 call assert_fails('hi XXX xxx=White', 'E423:')
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
473 endfunc
129077fb57e6 patch 8.0.0562: not enough test coverage for syntax commands
Christian Brabandt <cb@256bit.org>
parents: 11345
diff changeset
474
11465
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
475 func Test_bg_detection()
17657
0da9bc55c31a patch 8.1.1826: tests use hand coded feature and option checks
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
476 CheckNotGui
0da9bc55c31a patch 8.1.1826: tests use hand coded feature and option checks
Bram Moolenaar <Bram@vim.org>
parents: 17624
diff changeset
477
11465
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
478 " auto-detection of &bg, make sure sure it isn't set anywhere before
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
479 " this test
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
480 hi Normal ctermbg=0
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
481 call assert_equal('dark', &bg)
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
482 hi Normal ctermbg=4
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
483 call assert_equal('dark', &bg)
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
484 hi Normal ctermbg=12
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
485 call assert_equal('light', &bg)
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
486 hi Normal ctermbg=15
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
487 call assert_equal('light', &bg)
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
488
11599
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
489 " manually-set &bg takes precedence over auto-detection
11465
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
490 set bg=light
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
491 hi Normal ctermbg=4
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
492 call assert_equal('light', &bg)
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
493 set bg=dark
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
494 hi Normal ctermbg=12
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
495 call assert_equal('dark', &bg)
13322
0dc2e4998a15 patch 8.0.1535: C syntax test still fails when using gvim
Christian Brabandt <cb@256bit.org>
parents: 13320
diff changeset
496
0dc2e4998a15 patch 8.0.1535: C syntax test still fails when using gvim
Christian Brabandt <cb@256bit.org>
parents: 13320
diff changeset
497 hi Normal ctermbg=NONE
11465
7cbcba782c4e patch 8.0.0616: not always setting 'background' correctly after :hi Normal
Christian Brabandt <cb@256bit.org>
parents: 11354
diff changeset
498 endfunc
11529
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
499
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
500 func Test_syntax_hangs()
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
501 if !has('reltime') || !has('float') || !has('syntax')
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
502 return
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
503 endif
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
504
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
505 " This pattern takes a long time to match, it should timeout.
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
506 new
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
507 call setline(1, ['aaa', repeat('abc ', 1000), 'ccc'])
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
508 let start = reltime()
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
509 set nolazyredraw redrawtime=101
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
510 syn match Error /\%#=1a*.*X\@<=b*/
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
511 redraw
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
512 let elapsed = reltimefloat(reltime(start))
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
513 call assert_true(elapsed > 0.1)
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
514 call assert_true(elapsed < 1.0)
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
515
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
516 " second time syntax HL is disabled
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
517 let start = reltime()
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
518 redraw
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
519 let elapsed = reltimefloat(reltime(start))
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
520 call assert_true(elapsed < 0.1)
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
521
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
522 " after CTRL-L the timeout flag is reset
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
523 let start = reltime()
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
524 exe "normal \<C-L>"
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
525 redraw
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
526 let elapsed = reltimefloat(reltime(start))
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
527 call assert_true(elapsed > 0.1)
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
528 call assert_true(elapsed < 1.0)
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
529
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
530 set redrawtime&
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
531 bwipe!
998d2cf59caa patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents: 11465
diff changeset
532 endfunc
11553
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
533
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
534 func Test_conceal()
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
535 if !has('conceal')
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
536 return
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
537 endif
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
538
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
539 new
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
540 call setline(1, ['', '123456'])
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
541 syn match test23 "23" conceal cchar=X
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
542 syn match test45 "45" conceal
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
543
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
544 set conceallevel=0
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
545 call assert_equal('123456 ', ScreenLines(2, 7)[0])
11579
52e3a77c097b patch 8.0.0672: third item of synconcealed() changes too often
Christian Brabandt <cb@256bit.org>
parents: 11559
diff changeset
546 call assert_equal([[0, '', 0], [0, '', 0], [0, '', 0], [0, '', 0], [0, '', 0], [0, '', 0]], map(range(1, 6), 'synconcealed(2, v:val)'))
11553
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
547
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
548 set conceallevel=1
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
549 call assert_equal('1X 6 ', ScreenLines(2, 7)[0])
11579
52e3a77c097b patch 8.0.0672: third item of synconcealed() changes too often
Christian Brabandt <cb@256bit.org>
parents: 11559
diff changeset
550 call assert_equal([[0, '', 0], [1, 'X', 1], [1, 'X', 1], [1, ' ', 2], [1, ' ', 2], [0, '', 0]], map(range(1, 6), 'synconcealed(2, v:val)'))
11553
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
551
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
552 set conceallevel=1
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
553 set listchars=conceal:Y
11579
52e3a77c097b patch 8.0.0672: third item of synconcealed() changes too often
Christian Brabandt <cb@256bit.org>
parents: 11559
diff changeset
554 call assert_equal([[0, '', 0], [1, 'X', 1], [1, 'X', 1], [1, 'Y', 2], [1, 'Y', 2], [0, '', 0]], map(range(1, 6), 'synconcealed(2, v:val)'))
11553
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
555 call assert_equal('1XY6 ', ScreenLines(2, 7)[0])
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
556
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
557 set conceallevel=2
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
558 call assert_match('1X6 ', ScreenLines(2, 7)[0])
11579
52e3a77c097b patch 8.0.0672: third item of synconcealed() changes too often
Christian Brabandt <cb@256bit.org>
parents: 11559
diff changeset
559 call assert_equal([[0, '', 0], [1, 'X', 1], [1, 'X', 1], [1, '', 2], [1, '', 2], [0, '', 0]], map(range(1, 6), 'synconcealed(2, v:val)'))
11553
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
560
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
561 set conceallevel=3
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
562 call assert_match('16 ', ScreenLines(2, 7)[0])
11579
52e3a77c097b patch 8.0.0672: third item of synconcealed() changes too often
Christian Brabandt <cb@256bit.org>
parents: 11559
diff changeset
563 call assert_equal([[0, '', 0], [1, '', 1], [1, '', 1], [1, '', 2], [1, '', 2], [0, '', 0]], map(range(1, 6), 'synconcealed(2, v:val)'))
11553
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
564
20101
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
565 call AssertFails("syntax match Entity '&amp;' conceal cchar=\<Tab>", 'E844:')
64ea318298b7 patch 8.2.0606: several syntax HL errors not checked
Bram Moolenaar <Bram@vim.org>
parents: 19950
diff changeset
566
11553
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
567 syn clear
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
568 set conceallevel&
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
569 bw!
cbceef33af7a patch 8.0.0659: no test for conceal mode
Christian Brabandt <cb@256bit.org>
parents: 11529
diff changeset
570 endfunc
11599
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
571
13304
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
572 func Test_synstack_synIDtrans()
11599
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
573 new
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
574 setfiletype c
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
575 syntax on
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
576 call setline(1, ' /* A comment with a TODO */')
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
577
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
578 call assert_equal([], synstack(1, 1))
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
579
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
580 norm f/
17624
4c7097a980a5 patch 8.1.1809: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17596
diff changeset
581 eval synstack(line("."), col("."))->map('synIDattr(v:val, "name")')->assert_equal(['cComment', 'cCommentStart'])
4c7097a980a5 patch 8.1.1809: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17596
diff changeset
582 eval synstack(line("."), col("."))->map('synIDattr(synIDtrans(v:val), "name")')->assert_equal(['Comment', 'Comment'])
11599
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
583
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
584 norm fA
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
585 call assert_equal(['cComment'], map(synstack(line("."), col(".")), 'synIDattr(v:val, "name")'))
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
586 call assert_equal(['Comment'], map(synstack(line("."), col(".")), 'synIDattr(synIDtrans(v:val), "name")'))
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
587
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
588 norm fT
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
589 call assert_equal(['cComment', 'cTodo'], map(synstack(line("."), col(".")), 'synIDattr(v:val, "name")'))
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
590 call assert_equal(['Comment', 'Todo'], map(synstack(line("."), col(".")), 'synIDattr(synIDtrans(v:val), "name")'))
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
591
19783
546bdeef35f1 patch 8.2.0448: various functions not properly tested
Bram Moolenaar <Bram@vim.org>
parents: 18977
diff changeset
592 call assert_fails("let n=synIDtrans([])", 'E745:')
546bdeef35f1 patch 8.2.0448: various functions not properly tested
Bram Moolenaar <Bram@vim.org>
parents: 18977
diff changeset
593
11599
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
594 syn clear
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
595 bw!
3cf157856dc8 patch 8.0.0682: no test for synIDtrans()
Christian Brabandt <cb@256bit.org>
parents: 11579
diff changeset
596 endfunc
13304
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
597
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
598 " Check highlighting for a small piece of C code with a screen dump.
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
599 func Test_syntax_c()
20625
116c7bd5e980 patch 8.2.0866: not enough tests for buffer writing
Bram Moolenaar <Bram@vim.org>
parents: 20623
diff changeset
600 CheckRunVimInTerminal
13304
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
601 call writefile([
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
602 \ '/* comment line at the top */',
18392
e15c1d8a6b99 patch 8.1.2190: syntax test fails on Mac
Bram Moolenaar <Bram@vim.org>
parents: 18390
diff changeset
603 \ 'int main(int argc, char **argv) { // another comment',
13304
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
604 \ '#if 0',
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
605 \ ' int not_used;',
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
606 \ '#else',
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
607 \ ' int used;',
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
608 \ '#endif',
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
609 \ ' printf("Just an example piece of C code\n");',
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
610 \ ' return 0x0ff;',
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
611 \ '}',
18390
c34ee31d0878 patch 8.1.2189: syntax highlighting wrong for tab
Bram Moolenaar <Bram@vim.org>
parents: 18382
diff changeset
612 \ "\t\t ",
13304
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
613 \ ' static void',
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
614 \ 'myFunction(const double count, struct nothing, long there) {',
18364
ee489bb09ea8 patch 8.1.2176: syntax attributes not combined with Visual highlighting
Bram Moolenaar <Bram@vim.org>
parents: 18323
diff changeset
615 \ "\t// 123: nothing to endif here",
18323
72a0dbe1c004 patch 8.1.2156: first character after Tab is not highlighted
Bram Moolenaar <Bram@vim.org>
parents: 17869
diff changeset
616 \ "\tfor (int i = 0; i < count; ++i) {",
72a0dbe1c004 patch 8.1.2156: first character after Tab is not highlighted
Bram Moolenaar <Bram@vim.org>
parents: 17869
diff changeset
617 \ "\t break;",
72a0dbe1c004 patch 8.1.2156: first character after Tab is not highlighted
Bram Moolenaar <Bram@vim.org>
parents: 17869
diff changeset
618 \ "\t}",
18382
3fd7d544eedb patch 8.1.2185: syntax test fails
Bram Moolenaar <Bram@vim.org>
parents: 18364
diff changeset
619 \ "\tNote: asdf",
13304
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
620 \ '}',
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
621 \ ], 'Xtest.c')
13320
a90063ec1cd6 patch 8.0.1534: C syntax test fails when using gvim
Christian Brabandt <cb@256bit.org>
parents: 13306
diff changeset
622
a90063ec1cd6 patch 8.0.1534: C syntax test fails when using gvim
Christian Brabandt <cb@256bit.org>
parents: 13306
diff changeset
623 " This makes the default for 'background' use "dark", check that the
a90063ec1cd6 patch 8.0.1534: C syntax test fails when using gvim
Christian Brabandt <cb@256bit.org>
parents: 13306
diff changeset
624 " response to t_RB corrects it to "light".
a90063ec1cd6 patch 8.0.1534: C syntax test fails when using gvim
Christian Brabandt <cb@256bit.org>
parents: 13306
diff changeset
625 let $COLORFGBG = '15;0'
a90063ec1cd6 patch 8.0.1534: C syntax test fails when using gvim
Christian Brabandt <cb@256bit.org>
parents: 13306
diff changeset
626
18392
e15c1d8a6b99 patch 8.1.2190: syntax test fails on Mac
Bram Moolenaar <Bram@vim.org>
parents: 18390
diff changeset
627 let buf = RunVimInTerminal('Xtest.c', {})
18382
3fd7d544eedb patch 8.1.2185: syntax test fails
Bram Moolenaar <Bram@vim.org>
parents: 18364
diff changeset
628 call term_sendkeys(buf, ":syn keyword Search Note\r")
18390
c34ee31d0878 patch 8.1.2189: syntax highlighting wrong for tab
Bram Moolenaar <Bram@vim.org>
parents: 18382
diff changeset
629 call term_sendkeys(buf, ":syn match Error /^\\s\\+$/\r")
18364
ee489bb09ea8 patch 8.1.2176: syntax attributes not combined with Visual highlighting
Bram Moolenaar <Bram@vim.org>
parents: 18323
diff changeset
630 call term_sendkeys(buf, ":set hlsearch\r")
ee489bb09ea8 patch 8.1.2176: syntax attributes not combined with Visual highlighting
Bram Moolenaar <Bram@vim.org>
parents: 18323
diff changeset
631 call term_sendkeys(buf, "/endif\r")
ee489bb09ea8 patch 8.1.2176: syntax attributes not combined with Visual highlighting
Bram Moolenaar <Bram@vim.org>
parents: 18323
diff changeset
632 call term_sendkeys(buf, "vjfC")
13329
424321d6eea7 patch 8.0.1539: no test for the popup menu positioning
Christian Brabandt <cb@256bit.org>
parents: 13322
diff changeset
633 call VerifyScreenDump(buf, 'Test_syntax_c_01', {})
18364
ee489bb09ea8 patch 8.1.2176: syntax attributes not combined with Visual highlighting
Bram Moolenaar <Bram@vim.org>
parents: 18323
diff changeset
634
ee489bb09ea8 patch 8.1.2176: syntax attributes not combined with Visual highlighting
Bram Moolenaar <Bram@vim.org>
parents: 18323
diff changeset
635 call term_sendkeys(buf, "\<Esc>")
13304
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
636 call StopVimInTerminal(buf)
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
637
13320
a90063ec1cd6 patch 8.0.1534: C syntax test fails when using gvim
Christian Brabandt <cb@256bit.org>
parents: 13306
diff changeset
638 let $COLORFGBG = ''
13304
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
639 call delete('Xtest.c')
013c44d9dc09 patch 8.0.1526: no test using a screen dump yet
Christian Brabandt <cb@256bit.org>
parents: 11599
diff changeset
640 endfun
14161
7cac4646c552 patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents: 13329
diff changeset
641
7cac4646c552 patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents: 13329
diff changeset
642 " Using \z() in a region with NFA failing should not crash.
7cac4646c552 patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents: 13329
diff changeset
643 func Test_syn_wrong_z_one()
7cac4646c552 patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents: 13329
diff changeset
644 new
7cac4646c552 patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents: 13329
diff changeset
645 call setline(1, ['just some text', 'with foo and bar to match with'])
7cac4646c552 patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents: 13329
diff changeset
646 syn region FooBar start="foo\z(.*\)bar" end="\z1"
7cac4646c552 patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents: 13329
diff changeset
647 call test_override("nfa_fail", 1)
7cac4646c552 patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents: 13329
diff changeset
648 redraw!
7cac4646c552 patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents: 13329
diff changeset
649 redraw!
7cac4646c552 patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents: 13329
diff changeset
650 call test_override("ALL", 0)
7cac4646c552 patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents: 13329
diff changeset
651 bwipe!
7cac4646c552 patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents: 13329
diff changeset
652 endfunc
17596
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
653
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
654 func Test_syntax_after_bufdo()
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
655 call writefile(['/* aaa comment */'], 'Xaaa.c')
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
656 call writefile(['/* bbb comment */'], 'Xbbb.c')
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
657 call writefile(['/* ccc comment */'], 'Xccc.c')
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
658 call writefile(['/* ddd comment */'], 'Xddd.c')
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
659
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
660 let bnr = bufnr('%')
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
661 new Xaaa.c
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
662 badd Xbbb.c
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
663 badd Xccc.c
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
664 badd Xddd.c
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
665 exe "bwipe " . bnr
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
666 let l = []
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
667 bufdo call add(l, bufnr('%'))
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
668 call assert_equal(4, len(l))
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
669
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
670 syntax on
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
671
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
672 " This used to only enable syntax HL in the last buffer.
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
673 bufdo tab split
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
674 tabrewind
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
675 for tab in range(1, 4)
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
676 norm fm
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
677 call assert_equal(['cComment'], map(synstack(line("."), col(".")), 'synIDattr(v:val, "name")'))
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
678 tabnext
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
679 endfor
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
680
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
681 bwipe! Xaaa.c
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
682 bwipe! Xbbb.c
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
683 bwipe! Xccc.c
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
684 bwipe! Xddd.c
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
685 syntax off
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
686 call delete('Xaaa.c')
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
687 call delete('Xbbb.c')
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
688 call delete('Xccc.c')
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
689 call delete('Xddd.c')
892b4ea3bad6 patch 8.1.1795: no syntax HL after splitting windows with :bufdo
Bram Moolenaar <Bram@vim.org>
parents: 17089
diff changeset
690 endfunc
19783
546bdeef35f1 patch 8.2.0448: various functions not properly tested
Bram Moolenaar <Bram@vim.org>
parents: 18977
diff changeset
691
20623
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
692 func Test_syntax_foldlevel()
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
693 new
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
694 call setline(1, [
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
695 \ 'void f(int a)',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
696 \ '{',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
697 \ ' if (a == 1) {',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
698 \ ' a = 0;',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
699 \ ' } else if (a == 2) {',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
700 \ ' a = 1;',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
701 \ ' } else {',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
702 \ ' a = 2;',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
703 \ ' }',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
704 \ ' if (a > 0) {',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
705 \ ' if (a == 1) {',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
706 \ ' a = 0;',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
707 \ ' } /* missing newline */ } /* end of outer if */ else {',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
708 \ ' a = 1;',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
709 \ ' }',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
710 \ ' if (a == 1)',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
711 \ ' {',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
712 \ ' a = 0;',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
713 \ ' }',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
714 \ ' else if (a == 2)',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
715 \ ' {',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
716 \ ' a = 1;',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
717 \ ' }',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
718 \ ' else',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
719 \ ' {',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
720 \ ' a = 2;',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
721 \ ' }',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
722 \ '}',
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
723 \ ])
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
724 setfiletype c
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
725 syntax on
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
726 set foldmethod=syntax
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
727
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
728 call assert_fails('syn foldlevel start start', 'E390')
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
729 call assert_fails('syn foldlevel not_an_option', 'E390')
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
730
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
731 set foldlevel=1
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
732
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
733 syn foldlevel start
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
734 redir @c
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
735 syn foldlevel
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
736 redir END
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
737 call assert_equal("\nsyntax foldlevel start", @c)
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
738 syn sync fromstart
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
739 let a = map(range(3,9), 'foldclosed(v:val)')
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
740 call assert_equal([3,3,3,3,3,3,3], a) " attached cascade folds together
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
741 let a = map(range(10,15), 'foldclosed(v:val)')
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
742 call assert_equal([10,10,10,10,10,10], a) " over-attached 'else' hidden
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
743 let a = map(range(16,27), 'foldclosed(v:val)')
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
744 let unattached_results = [-1,17,17,17,-1,21,21,21,-1,25,25,25]
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
745 call assert_equal(unattached_results, a) " unattached cascade folds separately
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
746
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
747 syn foldlevel minimum
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
748 redir @c
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
749 syn foldlevel
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
750 redir END
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
751 call assert_equal("\nsyntax foldlevel minimum", @c)
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
752 syn sync fromstart
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
753 let a = map(range(3,9), 'foldclosed(v:val)')
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
754 call assert_equal([3,3,5,5,7,7,7], a) " attached cascade folds separately
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
755 let a = map(range(10,15), 'foldclosed(v:val)')
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
756 call assert_equal([10,10,10,13,13,13], a) " over-attached 'else' visible
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
757 let a = map(range(16,27), 'foldclosed(v:val)')
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
758 call assert_equal(unattached_results, a) " unattached cascade folds separately
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
759
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
760 set foldlevel=2
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
761
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
762 syn foldlevel start
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
763 syn sync fromstart
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
764 let a = map(range(11,14), 'foldclosed(v:val)')
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
765 call assert_equal([11,11,11,-1], a) " over-attached 'else' hidden
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
766
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
767 syn foldlevel minimum
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
768 syn sync fromstart
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
769 let a = map(range(11,14), 'foldclosed(v:val)')
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
770 call assert_equal([11,11,-1,-1], a) " over-attached 'else' visible
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
771
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
772 quit!
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
773 endfunc
99b6e6bf48bf patch 8.2.0865: syntax foldlevel is taken from the start of the line
Bram Moolenaar <Bram@vim.org>
parents: 20109
diff changeset
774
19783
546bdeef35f1 patch 8.2.0448: various functions not properly tested
Bram Moolenaar <Bram@vim.org>
parents: 18977
diff changeset
775 " vim: shiftwidth=2 sts=2 expandtab