Skip to content

Commit 3696dfc

Browse files
authored
Merge pull request #31 from kermorgant/var-completion-fix
Fix regression from pr #29 causing completion on object to fail
2 parents 8511f6a + 9f208d3 commit 3696dfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

company-phpactor.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"If point is at the end of a symbol, return it.
3636
Otherwise, if point is not inside a symbol, return an empty string.
3737
Here we create a temporary syntax table in order to add $ to symbols."
38-
(let (($temp-syn-table (make-syntax-table)))
38+
(let (($temp-syn-table (make-syntax-table php-mode-syntax-table)))
3939
(modify-syntax-entry ?\$ "_" $temp-syn-table)
4040

4141
(with-syntax-table $temp-syn-table

0 commit comments

Comments
 (0)