comparison runtime/syntax/php.vim @ 7384:aea5ebf352c4

commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b Author: Bram Moolenaar <Bram@vim.org> Date: Tue Dec 29 19:10:25 2015 +0100 Updated runtime files.
author Christian Brabandt <cb@256bit.org>
date Tue, 29 Dec 2015 19:15:06 +0100
parents 17333ebd2bbd
children 0bdeaf7092bc
comparison
equal deleted inserted replaced
7383:377a68b9fa06 7384:aea5ebf352c4
1 " Vim syntax file 1 " Vim syntax file
2 " Language: php PHP 3/4/5 2 " Language: php PHP 3/4/5
3 " Maintainer: Jason Woofenden <jason@jasonwoof.com> 3 " Maintainer: Jason Woofenden <jason@jasonwoof.com>
4 " Last Change: Nov 23, 2015 4 " Last Change: Dec 26, 2015
5 " URL: https://jasonwoof.com/gitweb/?p=vim-syntax.git;a=blob;f=php.vim;hb=HEAD 5 " URL: https://jasonwoof.com/gitweb/?p=vim-syntax.git;a=blob;f=php.vim;hb=HEAD
6 " Former Maintainers: Peter Hodge <toomuchphp-vim@yahoo.com> 6 " Former Maintainers: Peter Hodge <toomuchphp-vim@yahoo.com>
7 " Debian VIM Maintainers <pkg-vim-maintainers@lists.alioth.debian.org> 7 " Debian VIM Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>
8 " 8 "
9 " Note: If you are using a colour terminal with dark background, you will probably find 9 " Note: If you are using a colour terminal with dark background, you will probably find
513 syntax keyword phpConditional switch contained 513 syntax keyword phpConditional switch contained
514 syntax keyword phpStatement die contained 514 syntax keyword phpStatement die contained
515 515
516 " Highlighting for PHP5's user-definable magic class methods 516 " Highlighting for PHP5's user-definable magic class methods
517 syntax keyword phpSpecialFunction containedin=ALLBUT,phpComment,phpStringDouble,phpStringSingle,phpIdentifier 517 syntax keyword phpSpecialFunction containedin=ALLBUT,phpComment,phpStringDouble,phpStringSingle,phpIdentifier
518 \ __construct __destruct __call __toString __sleep __wakeup __set __get __unset __isset __clone __set_state 518 \ __construct __destruct __call __callStatic __get __set __isset __unset __sleep __wakeup __toString __invoke __set_state __clone __debugInfo
519 " Highlighting for __autoload slightly different from line above 519 " Highlighting for __autoload slightly different from line above
520 syntax keyword phpSpecialFunction containedin=ALLBUT,phpComment,phpStringDouble,phpStringSingle,phpIdentifier,phpMethodsVar 520 syntax keyword phpSpecialFunction containedin=ALLBUT,phpComment,phpStringDouble,phpStringSingle,phpIdentifier,phpMethodsVar
521 \ __autoload 521 \ __autoload
522 highlight link phpSpecialFunction phpOperator 522 highlight link phpSpecialFunction phpOperator
523 523