Files
Eisuke Kawashima 1c88aee1fa runtime: Remove wrong syn oneline keyword from a few syntax files
Also:
- drop a few trailing whitespaces
- mark the oneline keyword for :syn keyword as error in the
  Vim syntax script, add tests for it.

closes: #20018

Signed-off-by: Eisuke Kawashima <e-kwsm@users.noreply.github.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
2026-04-20 15:14:31 +00:00

390 lines
8.8 KiB
VimL

" Vim :syntax command
" VIM_TEST_SETUP hi link vimGroupList Todo
" :syn-case
syntax case
syntax case match
syntax case ignore
" :syn clear
syntax clear @testCluster
syntax clear testGroup
syntax clear @testCluster testGroup
syntax clear testGroup @testCluster
" :syn-conceal
syntax conceal
syntax conceal on
syntax conceal off
" :syn-foldlevel
syntax foldlevel
syntax foldlevel start
syntax foldlevel minimum
" :syn-include
syntax include @Foo <sfile>:p:h/foo.vim
syntax include <sfile>:p:h/foo.vim
" :syn-iskeyword
syntax iskeyword
syntax iskeyword clear
syntax iskeyword @,48-57,192-255,$,_
" :syn-list
syntax list
syntax list Foo
syntax list @Bar
" :syn-spell
syntax spell
syntax spell toplevel
syntax spell notoplevel
syntax spell default
" :syn-sync-ccomment
syntax sync ccomment
syntax sync ccomment Foo
syntax sync ccomment minlines=42 maxlines=42 linebreaks=1 linecont "pattern"
syntax sync ccomment Foo minlines=42 maxlines=42 linebreaks=1 linecont "pattern"
" :syn-sync-fromstart
syntax sync fromstart
syntax sync fromstart minlines=42 maxlines=42 linebreaks=1 linecont "pattern"
" :syn-sync-linebreaks
syntax sync linebreaks=1
syntax sync linebreaks=1 minlines=42 maxlines=42 linecont "pattern"
" :syn-sync-linecont
syntax sync linecont "pattern"
syntax sync linecont "pattern" minlines=42 maxlines=42 linebreaks=1
" :syn-sync-(min|max)lines
syntax sync minlines=42 maxlines=42
syntax sync minlines=42 maxlines=42 linebreaks=1 linecont "pattern"
" obsolete
syntax sync lines=42
" :syn-sync sync patterns
syntax sync match testSyncMatch grouphere testFoo "pattern"
syntax sync match testSyncMatch groupthere testBar "pattern"
syntax sync match testSyncMatch grouphere NONE "pattern"
syntax sync match testSyncMatch groupthere NONE "pattern"
" :syn-sync skip groups
syn sync match testMatch "pattern"
syn sync region testRegion start="start-pattern" skip="skip-pattern" end="end-pattern"
" :syn-sync-clear
syntax sync clear
syntax sync clear Foo
" tail comments are not explicitly supported by :syntax, see :help :comment
syn match testMatch "pattern" contained " tail comment
" NOTE: comments not currently supported
syn keyword testKeyword keyword contained " tail comment
syn region testRegion start="start-pattern" skip="skip-pattern" end="end-pattern" contained " tail comment
" Multiline commands
syn keyword testKeyword
"\ OPTIONS
"\ conceal option
\ conceal
"\ cchar option
\ cchar=&
"\ contained option
\ contained
"\ containedin option
\ containedin=testContainer
"\ nextgroup option
\ nextgroup=testNext0,@testCluster
"\ transparent option
\ transparent
"\ skipwhite option
\ skipwhite
"\ skipempty option
\ skipempty
"\ skipnl option
\ skipnl
"\ KEYWORDS LIST
"\ keyword 1
\ keyword1
"\ keyword 2
\ keyword2
"\ keyword 3
\ keyword3
syn match testMatch
"\ MATCH PATTERN
"\ pattern start
\ /
"\ part 1 description
\pat1a .* pat1b
"\ part 2 description
\pat2a .* pat2b
"\ part 3 description
\pat3a .* pat3b
"\ pattern end
\/
"\ OPTIONS
"\ conceal option
\ conceal
"\ cchar option
\ cchar=&
"\ contained option
\ contained
"\ containedin option
\ containedin=testContainer
"\ nextgroup option
\ nextgroup=testNext0,@testCluster
"\ transparent option
\ transparent
"\ skipwhite option
\ skipwhite
"\ skipempty option
\ skipempty
"\ skipnl option
\ skipnl
"\ contains option
\ contains=testContained1,testContained2
"\ fold option
\ fold
"\ display option
\ display
"\ extend option
\ extend
"\ excludenl option
\ excludenl
"\ keepend option
\ keepend
syn region testRegion
"\ OPTIONS
"\ start option
\ start="start-pattern"
"\ skip option
\ skip="skip-pattern"
"\ end option
\ end="end-pattern"
"\ conceal option
\ conceal
"\ cchar option
\ cchar=&
"\ contained option
\ contained
"\ containedin option
\ containedin=testContainer
"\ nextgroup option
\ nextgroup=testNext0,@testCluster
"\ transparent option
\ transparent
"\ skipwhite option
\ skipwhite
"\ skipempty option
\ skipempty
"\ skipnl option
\ skipnl
"\ contains option
\ contains=testContained1,testContained2
"\ oneline option
\ oneline
"\ fold option
\ fold
"\ display option
\ display
"\ extend option
\ extend
"\ concealends option
\ concealends
"\ excludenl option
\ excludenl
"\ keepend option
\ keepend
syn cluster testCluster
"\ OPTIONS
"\ contains option
\ contains=testContained1,testContained2,testContained3
syn cluster testCluster
"\ OPTIONS
"\ add option
\ add=testAdd
"\ remove option
\ remove=testRemove
" multiline group list
syn keyword testNext0 keyword
syn keyword testNext1 keyword
syn keyword testNext2 keyword
syn keyword testNext3 keyword
syn keyword testNext4 keyword
syn keyword testNext5 keyword
syn keyword testNext6 keyword
syn keyword testNext7 keyword
syn keyword testNext8 keyword
syn keyword testNext9 keyword
syn keyword testKeyword
"\ nextgroup option
\ nextgroup=
"\ a comment
\ testNext0 , testNext1 ,
"\ a comment
\ testNext[2-8].* ,
"\ a comment
\ testNext9 , @testCluster skipwhite
"\ KEYWORDS LIST
\ keyword4
\ keyword5
\ keyword6
syn keyword testKeyword
"\ nextgroup option
\ nextgroup= testNext0,
"\ comment
\ , testNext1
"\ comment
\, testNext2
"\ comment
\ ,textNext3
"\ comment
\,textNext4
"\ comment
\ , textNext5 ,
"\ comment
\ textNext6,
"\ comment
\ textNext7 ,
"\ comment
\textNext8,
"\ comment
\textNext9 ,
"\ comment
\ textNext10
"\ comment
\ ,textNext11,
"\ comment
\ textNext12,textNext13,
"\ comment
\ textNext13,textNext14
"\ comment
\ ,textNext15,textNext16
"\ comment
\ , textNext17 , textNext18 ,
"\ comment
\ textNext19, @testCluster
\ skipnl
"\ KEYWORDS LIST
"\ keyword 1
\ keyword1
"\ keyword 2
\ keyword2
"\ keyword 3
\ keyword3
" leaking contained groups
" Example: runtime/syntax/zsh.vim
" "cluster" should not be highlighted outside of :syntax commands
function! s:ContainedGroup()
" ...
for cluster in ['markdownHighlight_zsh', 'zsh']
" ...
endfor
" ...
endfunction
" early termination of vimSynRegion
syn region testRegion
"\ | does not end the args region
"\ start="foo\|bar"
\ start="start"
\ end="end"
" Issue #18491 (Two ")"s are incorrectly colored 'vimOperError' in syntax/mail.vim)
syn match mailHeaderKey contained contains=mailHeaderEmail,mailEmail,@NoSpell "\v(^(\> ?)*)@<=(from|reply-to):.*$" fold
" Issue #19366 (highlight error for contains elements in a new line)
" syntax/typst.vim
" Code {{{1
syntax cluster typstCode
\ contains=@typstCommon
\ ,@typstCodeKeywords
\ ,@typstCodeConstants
\ ,@typstCodeIdentifiers
\ ,@typstCodeFunctions
\ ,@typstCodeParens
" Code > Keywords {{{2
syntax cluster typstCodeKeywords
\ contains=typstCodeConditional
\ ,typstCodeRepeat
\ ,typstCodeKeyword
\ ,typstCodeStatement
syntax cluster typstCodeKeywords
\ contains=
"\ comment
\ typstCodeConditional
\ ,typstCodeRepeat
\ ,typstCodeKeyword
\ ,typstCodeStatement
syntax cluster typstCodeKeywords
\ contains=
"\ comment
\ typstCodeConditional
\ ,typstCodeRepeat
\ ,typstCodeKeyword
\ ,typstCodeStatement
" Examples from distributed syntax files
syn match slrnrcColorInit contained "^\s*color\s\+\S\+" skipwhite nextgroup=slrnrcColorVal\(Str\)\= contains=slrnrcColor\(Obj\|ObjStr\)\=
syn region slrnrcCmdLine matchgroup=slrnrcCmd start="\<\(autobaud\|...\|visible_headers\)\>" end="$" oneline contains=slrnrc\(String\|Comment\)
" :syntax keyword — oneline accepted but meaningless
syntax keyword TestKw foo bar oneline
syntax keyword TestKw2 oneline baz quux
" :syntax match — oneline accepted but meaningless
syntax match TestMatch /\<foo\>/ oneline
syntax match TestMatch2 oneline /\<bar\>/
" :syntax region — oneline is meaningful here
syntax region TestRegion start=/{/ end=/}/ oneline
syntax region TestRegion2 oneline start=/"/ end=/"/
syntax region TestRegion3 start=/\/\*/ end=/\*\// oneline containedin=ALL