Skip to content
This repository has been archived by the owner on Jul 31, 2018. It is now read-only.

Commit

Permalink
Enable local variable completion
Browse files Browse the repository at this point in the history
From #8
  • Loading branch information
dantleech committed May 20, 2018
1 parent fa1e692 commit fab8505
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pythonx/cm_sources/phpactor.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
register_source(name='phpactor',
priority=9,
abbreviation='php',
word_pattern=r'[$\w]+',
word_pattern=r'[\w]+',
scoping=True,
scopes=['php'],
early_cache=1,
cm_refresh_patterns=[r'-\>', r'::'],)
cm_refresh_patterns=[r'$', r'-\>', r'::'],)

import json
import os
Expand Down

0 comments on commit fab8505

Please sign in to comment.