Skip to content

Commit

Permalink
Don't show code completion list after a php blog starts - for example…
Browse files Browse the repository at this point in the history
… don't complete "php" after "<?php"
  • Loading branch information
blach committed Sep 15, 2012
1 parent fe52eaa commit ca45fcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CodeCompletion/php.json
Expand Up @@ -4236,7 +4236,7 @@
{
"description": "PHP function completion",
"scope": "source.php - variable.other.php - comment - string",
"pattern": "\\b([a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*)",
"pattern": "(?<!<\\?)\\b([a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*)",
"completionCaptureIndex": 1,
"completionSetNames": [
"php.functions",
Expand Down

0 comments on commit ca45fcf

Please sign in to comment.