Skip to content

Commit 9f208d3

Browse files
committed
Fix regression from pr #29 causing completion on object to fail
pr#29 added avriable completion but completion of object methods stopped working. This should now be fixed.
1 parent b5ec5f1 commit 9f208d3

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)