php: Fix php-company autocompletion

Solve #9115.

The company-minimum-prefix-length variable shouldn't be set to 1000. Doing so
prevents the company completion popup from showing. Instead, let the
company-minimum-prefix-length stay at its default value.
This commit is contained in:
Dela Anthonio 2017-07-31 11:40:52 -04:00 committed by d12frosted
parent 8e3a59dbfd
commit cdb8672f04
No known key found for this signature in database
GPG key ID: 8F60E862D6F5CE8F

View file

@ -70,6 +70,4 @@
(add-hook 'php-mode-hook 'ac-php-core-eldoc-setup)
(spacemacs|add-company-backends
:modes php-mode
:variables
company-minimum-prefix-length 1000
:backends company-ac-php-backend))))