vim-patch:0635ee682481

Runtime file updates

0635ee6824
This commit is contained in:
Justin M. Keyes 2017-11-07 01:20:13 +01:00
parent 49a627dbd9
commit 60179b8a3b

View File

@ -1,7 +1,7 @@
" Vim syntax file " Vim syntax file
" Language: php PHP 3/4/5/7 " Language: php PHP 3/4/5/7
" Maintainer: Jason Woofenden <jason@jasonwoof.com> " Maintainer: Jason Woofenden <jason@jasonwoof.com>
" Last Change: Dec 11, 2016 " Last Change: Apr 28, 2017
" URL: https://jasonwoof.com/gitweb/?p=vim-syntax.git;a=blob;f=php.vim;hb=HEAD " URL: https://jasonwoof.com/gitweb/?p=vim-syntax.git;a=blob;f=php.vim;hb=HEAD
" Former Maintainers: Peter Hodge <toomuchphp-vim@yahoo.com> " Former Maintainers: Peter Hodge <toomuchphp-vim@yahoo.com>
" Debian VIM Maintainers <pkg-vim-maintainers@lists.alioth.debian.org> " Debian VIM Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>
@ -11,32 +11,28 @@
" colourscheme, because elflord's colours will better highlight the break-points " colourscheme, because elflord's colours will better highlight the break-points
" (Statements) in your code. " (Statements) in your code.
" "
" Options: php_sql_query = 1 for SQL syntax highlighting inside strings " Options:
" php_htmlInStrings = 1 for HTML syntax highlighting inside strings " Set to anything to enable:
" php_baselib = 1 for highlighting baselib functions " php_sql_query SQL syntax highlighting inside strings
" php_asp_tags = 1 for highlighting ASP-style short tags " php_htmlInStrings HTML syntax highlighting inside strings
" php_parent_error_close = 1 for highlighting parent error ] or ) " php_baselib highlighting baselib functions
" php_parent_error_open = 1 for skipping an php end tag, if there exists an open ( or [ without a closing one " php_asp_tags highlighting ASP-style short tags
" php_oldStyle = 1 for using old colorstyle " php_parent_error_close highlighting parent error ] or )
" php_noShortTags = 1 don't sync <? ?> as php " php_parent_error_open skipping an php end tag, if there exists
" php_folding = 1 for folding classes and functions " an open ( or [ without a closing one
" php_folding = 2 for folding all { } regions " php_oldStyle use old colorstyle
" php_sync_method = x " php_noShortTags don't sync <? ?> as php
" x=-1 to sync by search ( default ) " Set to a specific value:
" x>0 to sync at least x lines backwards " php_folding = 1 fold classes and functions
" x=0 to sync from start " php_folding = 2 fold all { } regions
" " php_sync_method = x where x is an integer:
" Added by Peter Hodge On June 9, 2006: " -1 sync by search ( default )
" php_special_functions = 1|0 to highlight functions with abnormal behaviour " >0 sync at least x lines backwards
" php_alt_comparisons = 1|0 to highlight comparison operators in an alternate colour " 0 sync from start
" php_alt_assignByReference = 1|0 to highlight '= &' in an alternate colour " Set to 0 to _disable_: (Added by Peter Hodge On June 9, 2006)
" " php_special_functions = 0 highlight functions with abnormal behaviour
" Note: these all default to 1 (On), so you would set them to '0' to turn them off. " php_alt_comparisons = 0 comparison operators in an alternate colour
" E.g., in your .vimrc or _vimrc file: " php_alt_assignByReference = 0 '= &' in an alternate colour
" let php_special_functions = 0
" let php_alt_comparisons = 0
" let php_alt_assignByReference = 0
" Unletting these variables will revert back to their default (On).
" "
" "
" Note: " Note: