Merge pull request #21 from tommcdo/master

Remove $ from iskeyword in PHP files
This commit is contained in:
Jose Elera Campana
2013-05-08 11:35:58 -07:00

View File

@@ -26,6 +26,11 @@ endif
"" dollar sign is permitted anywhere in an identifier "" dollar sign is permitted anywhere in an identifier
setlocal iskeyword+=$ setlocal iskeyword+=$
"" Remove dollar sign from identifier when embedded in a PHP file
if &filetype == 'php'
setlocal iskeyword-=$
endif
syntax sync fromstart syntax sync fromstart
"" syntax coloring for Node.js shebang line "" syntax coloring for Node.js shebang line