diff options
| author | James Nguyen <james@jojojames.com> | 2021-01-28 23:49:48 -0800 |
|---|---|---|
| committer | James Nguyen <james@jojojames.com> | 2021-01-28 23:49:48 -0800 |
| commit | 2cce30225bdfd5304e0368e99cfd83ea132269c8 (patch) | |
| tree | 118388e8f5e8351136c32a55bce2d3db5247f76d /modes | |
| parent | 0c0dcd7390d2270af3df14a30e92fd816c8e2123 (diff) | |
Company: Remove obsolete code
Diffstat (limited to 'modes')
| -rw-r--r-- | modes/company/evil-collection-company.el | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/modes/company/evil-collection-company.el b/modes/company/evil-collection-company.el index aeeff6f..13310a3 100644 --- a/modes/company/evil-collection-company.el +++ b/modes/company/evil-collection-company.el @@ -30,9 +30,6 @@ (require 'company nil t) (require 'evil-collection) -;; TODO: `company-tng-configure-default' will be replaced by `company-tng-mode' in 0.9.14. -;; See https://github.com/company-mode/company-mode/blob/master/NEWS.md -(declare-function company-tng-configure-default "company-tng") (declare-function company-tng-mode "company-tng") (defgroup evil-collection-company nil @@ -96,9 +93,7 @@ be set through custom or before evil-collection loads." ;; Sets up YCMD like behavior. (when evil-collection-company-use-tng (require 'company-tng) - (if (fboundp 'company-tng-mode) - (company-tng-mode +1) - (company-tng-configure-default))) + (company-tng-mode +1)) ;; Make `company-mode' not show popup when not in supported state (advice-add 'company-call-backend |
