This project is a fork of php.vim--Garvin which in turn is an update of the php.vim script which in turn is an updated version of the php.vim syntax file distributed with Vim. Whew!
👉 Accepting pull requests for PHP 5.6 new features. 👈
-
g:php_syntax_extensions_enabled
,g:php_syntax_extensions_disabled
b:php_syntax_extensions_enabled
,b:php_syntax_extensions_disabled
A list of extension names (lowercase) for which built-in functions, constants, classes and interfaces is enabled / disabled.
The project comes with a Dockerfile which can be used to rebuild the syntax file.
docker build -t stanangeloff/php.vim .
docker run --rm -i -v "$PWD":/var/php -t stanangeloff/php.vim > /tmp/php.vim && cat /tmp/php.vim | sed 's/\x0D$//' > syntax/php.vim
docker rmi stanangeloff/php.vim