completion/company: minor refactor/reformatting

This commit is contained in:
Henrik Lissner 2020-08-07 20:14:42 -04:00
parent 3b13105e0e
commit fd3b89854e
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -9,17 +9,18 @@
company-tooltip-limit 14 company-tooltip-limit 14
company-tooltip-align-annotations t company-tooltip-align-annotations t
company-require-match 'never company-require-match 'never
company-global-modes company-global-modes '(not erc-mode message-mode help-mode gud-mode)
'(not erc-mode message-mode help-mode gud-mode)
company-frontends '(company-pseudo-tooltip-frontend company-frontends '(company-pseudo-tooltip-frontend
company-echo-metadata-frontend) company-echo-metadata-frontend)
;; Buffer-local backends will be computed when loading a major mode, so ;; Buffer-local backends will be computed when loading a major mode, so
;; only specify a global default here. ;; only specify a global default here.
company-backends '(company-capf) company-backends '(company-capf)
;; Company overrides `company-active-map' based on ;; These auto-complete the current selection when
;; `company-auto-complete-chars'; no magic please! ;; `company-auto-complete-chars' is typed. This is too magical. We
;; already have the much more explicit RET and TAB.
company-auto-complete nil
company-auto-complete-chars nil company-auto-complete-chars nil
;; Only search the current buffer for `company-dabbrev' (a backend that ;; Only search the current buffer for `company-dabbrev' (a backend that