From 3f98c8b1a6e216b97cffc2ad70efdacd1f4a117a Mon Sep 17 00:00:00 2001 From: Cody Wilson Date: Tue, 13 Aug 2019 10:23:03 -0500 Subject: [PATCH] Added company-phpactor to packages Previously this was included automatically with phpactor, but now the phpactor package call is only pulling in phpactor.el and its requirements. --- modules/lang/php/packages.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/lang/php/packages.el b/modules/lang/php/packages.el index bcb87db05..1b1099536 100644 --- a/modules/lang/php/packages.el +++ b/modules/lang/php/packages.el @@ -11,7 +11,8 @@ (package! hack-mode :recipe (:host github :repo "hhvm/hack-mode"))) (unless (featurep! +lsp) - (package! phpactor)) + (package! phpactor) + (package! company-phpactor)) (when (featurep! :editor format) (package! php-cs-fixer))