completion/company: remove company-quickhelp

Quickhelp is unreliable and doesn't look very good. I'm searching for an
alternative.
This commit is contained in:
Henrik Lissner 2018-04-23 03:42:15 -04:00
parent 5e007ada08
commit 779184a9ee
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
3 changed files with 1 additions and 9 deletions

View file

@ -55,12 +55,6 @@ MODES should be one major-mode symbol or a list of them."
:config (setq company-statistics-file (concat doom-cache-dir "company-stats-cache.el")))
(def-package! company-quickhelp
:unless (and EMACS26+ (featurep! +childframe))
:hook (company-mode . company-quickhelp-mode)
:config (setq company-quickhelp-delay nil))
(def-package! company-box
:when (and EMACS26+ (featurep! +childframe))
:hook (company-mode . company-box-mode)

View file

@ -3,7 +3,6 @@
(package! company)
(package! company-dict)
(package! company-quickhelp)
(package! company-statistics)
(when (featurep! +childframe)
(package! company-box))

View file

@ -366,9 +366,8 @@
"C-o" #'company-search-kill-others
"C-n" #'company-select-next
"C-p" #'company-select-previous
"C-h" #'company-quickhelp-manual-begin
"C-h" #'company-show-doc-buffer
"C-s" #'company-filter-candidates
"C-S-h" #'company-show-doc-buffer
"C-S-s" #'company-search-candidates
"C-SPC" #'company-complete-common
"TAB" #'company-complete-common-or-cycle