-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does not work along with company-complete #113
Comments
Does If it does not, the current backend does not support to documentation display. You can find out the currently used backend with |
C-h is bind to delete a character on my end; while completion is active, Output of |
OK. Please clarify: does it work with other backends? In |
I am not sure it does not do work do anything, maybe I was not able to make proper init.el file. Is there any |
Here's the problem: you're resetting the value of Do it in the reverse: move |
ah I tried it but I does not work :-( updated (require 'package)
(setq package-archives '(("gnu" . "https://elpa.gnu.org/packages/")
("melpa" . "https://melpa.org/packages/")
("org" . "https://orgmode.org/elpa/")))
(add-to-list 'package-archives
'("MELPA Stable" . "http://stable.melpa.org/packages/") t)
(package-initialize)
(when (not package-archive-contents)
(package-refresh-contents))
(if (not (package-installed-p 'company-quickhelp))
(progn
(package-install 'company-quickhelp)))
(add-hook 'after-init-hook 'global-company-mode)
(setq company-auto-complete t)
(setq company-auto-complete t)
(global-set-key (kbd "C-c C-k") 'company-complete)
(company-quickhelp-mode) ;; moved to the end of the file
(eval-after-load 'company
'(define-key company-active-map (kbd "C-c h") #'company-quickhelp-manual-begin)) |
Does it work in |
Like I only used text code on my previoes comment in |
Could you rephrase that? I'm not sure I understand you well. |
Sorry I am just unable to make it work. |
It doesn't work in Are you using a graphical Emacs? Not in terminal? |
I was not able to make it work, what may be the reason?
C-c h
is not triggered as well.my config file:
The text was updated successfully, but these errors were encountered: