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

Add phpNull as keyword #78

Merged
merged 1 commit into from
Apr 9, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion syntax/php.vim
Original file line number Diff line number Diff line change
Expand Up @@ -562,6 +562,9 @@ syn region phpIdentifierComplex matchgroup=phpParent start="{\$"rs=e-1 end="}"
" Boolean
syn keyword phpBoolean true false contained

" NULL
syn keyword phpNull null contained

" Number
syn match phpNumber "\<\d\+\>" contained display
syn match phpNumber "-\d\+\>" contained display
Expand Down Expand Up @@ -727,7 +730,7 @@ syn keyword phpKeyword function contained
syn match phpFunction /\h\w*/ contained

" Clusters
syn cluster phpClConst contains=phpFunctions,phpClasses,phpStaticClasses,phpIdentifier,phpStatement,phpKeyword,phpOperator,phpSplatOperator,phpStringSingle,phpStringDouble,phpBacktick,phpNumber,phpType,phpBoolean,phpStructure,phpMethodsVar,phpConstants,phpException,phpSuperglobals,phpMagicConstants,phpServerVars
syn cluster phpClConst contains=phpFunctions,phpClasses,phpStaticClasses,phpIdentifier,phpStatement,phpKeyword,phpOperator,phpSplatOperator,phpStringSingle,phpStringDouble,phpBacktick,phpNumber,phpType,phpBoolean,phpNull,phpStructure,phpMethodsVar,phpConstants,phpException,phpSuperglobals,phpMagicConstants,phpServerVars
syn cluster phpClInside contains=@phpClConst,phpComment,phpDocComment,phpParent,phpParentError,phpInclude,phpHereDoc,phpNowDoc
syn cluster phpClFunction contains=@phpClInside,phpDefine,phpParentError,phpStorageClass,phpKeyword
syn cluster phpClControl contains=phpFoldIfContainer,phpFoldWhile,phpFoldDoWhile,phpFoldFor,phpFoldForeach,phpFoldTryContainer,phpFoldSwitch
Expand Down Expand Up @@ -812,6 +815,7 @@ if !exists("did_php_syn_inits")
hi def link phpMagicConstants Constant
hi def link phpServerVars Constant
hi def link phpConstants Constant
hi def link phpNull Constant
hi def link phpBoolean Boolean
hi def link phpNumber Number
hi def link phpStringSingle String
Expand Down