Skip to content
This repository was archived by the owner on Dec 1, 2020. It is now read-only.

Commit 93dc1d0

Browse files
committed
Basic splat operator support for PHP 5.6.
1 parent b6b6ba7 commit 93dc1d0

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

syntax/php.template

+4-1
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ syn match phpMemberSelector "->" contained display
157157
syn match phpVarSelector "\$" contained display
158158
" highlight object variables inside strings
159159
syn match phpMethodsVar "->\h\w*" contained contains=phpMethods,phpMemberSelector display containedin=phpStringDouble
160+
syn match phpSplatOperator "\.\.\." contained display
160161

161162
" Identifier
162163
syn match phpIdentifier "$\h\w*" contained contains=phpSuperglobals,phpVarSelector display
@@ -272,7 +273,7 @@ else
272273
endif
273274

274275
" Clusters
275-
syn cluster phpClConst contains=phpFunctions,phpClasses,phpIdentifier,phpStatement,phpKeyword,phpOperator,phpStringSingle,phpStringDouble,phpBacktick,phpNumber,phpType,phpBoolean,phpStructure,phpMethodsVar,phpConstants,phpException,phpSuperglobals,phpMagicConstants,phpServerVars
276+
syn cluster phpClConst contains=phpFunctions,phpClasses,phpIdentifier,phpStatement,phpKeyword,phpOperator,phpSplatOperator,phpStringSingle,phpStringDouble,phpBacktick,phpNumber,phpType,phpBoolean,phpStructure,phpMethodsVar,phpConstants,phpException,phpSuperglobals,phpMagicConstants,phpServerVars
276277
syn cluster phpClInside contains=@phpClConst,phpComment,phpDocComment,phpParent,phpParentError,phpInclude,phpHereDoc,phpNowDoc
277278
syn cluster phpClFunction contains=@phpClInside,phpDefine,phpParentError,phpStorageClass,phpKeyword
278279
syn cluster phpClTop contains=@phpClFunction,phpFoldFunction,phpFoldClass,phpFoldInterface,phpFoldTry,phpFoldCatch
@@ -359,6 +360,8 @@ if !exists("did_php_syn_inits")
359360
hi def link phpOctalError Error
360361
hi def link phpTodo Todo
361362

363+
hi def link phpSplatOperator phpOperator
364+
362365
hi def link phpCommentStar phpComment
363366
hi def link phpDocComment phpComment
364367
hi def link phpCommentTitle phpComment

syntax/php.vim

+4-1
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,7 @@ syn match phpMemberSelector "->" contained display
360360
syn match phpVarSelector "\$" contained display
361361
" highlight object variables inside strings
362362
syn match phpMethodsVar "->\h\w*" contained contains=phpMethods,phpMemberSelector display containedin=phpStringDouble
363+
syn match phpSplatOperator "\.\.\." contained display
363364

364365
" Identifier
365366
syn match phpIdentifier "$\h\w*" contained contains=phpSuperglobals,phpVarSelector display
@@ -475,7 +476,7 @@ else
475476
endif
476477

477478
" Clusters
478-
syn cluster phpClConst contains=phpFunctions,phpClasses,phpIdentifier,phpStatement,phpKeyword,phpOperator,phpStringSingle,phpStringDouble,phpBacktick,phpNumber,phpType,phpBoolean,phpStructure,phpMethodsVar,phpConstants,phpException,phpSuperglobals,phpMagicConstants,phpServerVars
479+
syn cluster phpClConst contains=phpFunctions,phpClasses,phpIdentifier,phpStatement,phpKeyword,phpOperator,phpSplatOperator,phpStringSingle,phpStringDouble,phpBacktick,phpNumber,phpType,phpBoolean,phpStructure,phpMethodsVar,phpConstants,phpException,phpSuperglobals,phpMagicConstants,phpServerVars
479480
syn cluster phpClInside contains=@phpClConst,phpComment,phpDocComment,phpParent,phpParentError,phpInclude,phpHereDoc,phpNowDoc
480481
syn cluster phpClFunction contains=@phpClInside,phpDefine,phpParentError,phpStorageClass,phpKeyword
481482
syn cluster phpClTop contains=@phpClFunction,phpFoldFunction,phpFoldClass,phpFoldInterface,phpFoldTry,phpFoldCatch
@@ -562,6 +563,8 @@ if !exists("did_php_syn_inits")
562563
hi def link phpOctalError Error
563564
hi def link phpTodo Todo
564565

566+
hi def link phpSplatOperator phpOperator
567+
565568
hi def link phpCommentStar phpComment
566569
hi def link phpDocComment phpComment
567570
hi def link phpCommentTitle phpComment

0 commit comments

Comments
 (0)