From 56fcad4970fca60c43ddf794777b3a2a88543a78 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 9 Aug 2018 00:40:26 +0200 Subject: [PATCH] lang/php: use internal phpctags only Other versions of phpctags may cause errors. --- modules/lang/php/config.el | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/modules/lang/php/config.el b/modules/lang/php/config.el index 6609f877d..216835eaa 100644 --- a/modules/lang/php/config.el +++ b/modules/lang/php/config.el @@ -73,15 +73,7 @@ :init (add-to-list '+php--company-backends 'company-ac-php-backend nil #'eq) (add-hook 'php-mode-hook #'+php|init-ac-php-core-eldoc) - (setq ac-php-tags-path (concat doom-cache-dir "ac-php/")) - ;; loaded by `company-php' - (after! ac-php-core - (when (equal ac-php-ctags-executable - (concat ac-php-root-directory "phpctags")) - ;; prioritize phpctags in PATH - (setq ac-php-ctags-executable - (or (executable-find "phpctags") - ac-php-ctags-executable))))) + (setq ac-php-tags-path (concat doom-cache-dir "ac-php/"))) ;;