Emacs: configure company-tide to not clobber company-backends
Alan Pearce alan@alanpearce.eu
Thu, 23 Jun 2022 23:57:50 +0200
1 files changed, 1 insertions(+), 6 deletions(-)
jump to
M user/emacs/init.el → user/emacs/init.el
@@ -1001,12 +1001,7 @@ :ghook ('typescript-mode-hook #'tide-setup) :init (progn (setq tide-completion-setup-company-backend nil) (flycheck-add-next-checker 'typescript-tide 'javascript-eslint) - (company-set-secondary-backend-for-mode typescript-mode 'company-tide)) - :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))))) + (company-set-secondary-backend-for-mode typescript-mode 'company-tide))) ;;;; Reformat on save