[company] disable annoying message from the etags backend

This commit is contained in:
contrapunctus 2021-08-04 14:47:29 +05:30
parent 66979d8104
commit 5c546104cf
1 changed files with 2 additions and 1 deletions

View File

@ -2834,7 +2834,8 @@ pjb suggested a different approach [[http://paste.lisp.org/display/10157][here]]
;; ("TAB" . company-indent-or-complete-common)
;; ("C-i" . company-indent-or-complete-common))
:config
(add-to-list 'company-backends 'company-irony))
(add-to-list 'company-backends 'company-irony)
(setq company-backends (remove 'company-etags company-backends)))
#+END_SRC
#+BEGIN_SRC emacs-lisp