Emacs: fix company configuration (broken by tide load side-effects) https://github.com/ananthakumaran/tide/pull/384
Alan Pearce alan@alanpearce.eu
Thu, 16 Jul 2020 14:10:25 +0200
1 files changed, 6 insertions(+), 1 deletions(-)
jump to
M user/emacs/init.el → user/emacs/init.el
@@ -915,7 +915,12 @@ :ghook ('(js2-mode-hook typescript-mode-hook) #'add-node-modules-path)) (use-package tide :after (typescript-mode company flycheck) - :ghook ('typescript-mode-hook #'tide-setup)) + :ghook ('typescript-mode-hook #'tide-setup) + :config (progn + ;; loading this package has the annoying effect of breaking my company configuration + ;; upstream fix: https://github.com/ananthakumaran/tide/pull/384 + (when (eq (car company-backends) 'company-tide) + (setq company-backends (remq 'company-tide company-backends))))) ;;;; Reformat on save