-
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
Unable to define-key in company-active-map #63
Comments
I don't know why this is happening to you. I have the following, in my (fill-keymap company-active-map
"C-l" 'company-complete-common
"C-k" 'company-complete-selection
(kbd "TAB") 'yas-expand) and it works fine. |
I'm not familiar with When |
It's an abstraction living in my
Reasonable assumption, but I can't reproduce. If you set |
I added (setq company-quickhelp-delay 10) And like you said, the bindings work up until 10 seconds later, when the tooltip kicks in. Are you saying you cannot reproduce this when you change your |
Aight, then what happens is that
Yes |
I started typing something, waited for the tooltip to pop up, and then I started trying to iterate through the company-mode options using the
The alternating messages happen depending on whether i press |
Aight, then this doesn't have anything to do with company-quickhelp. If you fix the errors (wherever they're coming from) you'll get the behavior you want. |
Same issue here, and no error in The
|
I found the problem. because i binded (add-hook
'company-completion-started-hook
(lambda (&rest ignore)
(when evil-mode
(when (evil-insert-state-p)
(define-key evil-insert-state-map (kbd "C-n") nil)
(define-key evil-insert-state-map (kbd "C-p") nil)
)))) But why only |
After enabling company-quickhelp with
(company-quickhelp-mode 1)
The keybindings I set up in company-active-map don't seem to hold anymore. Specifically:
Is this intended behavior? If so, do you know of a way around this issue?
The text was updated successfully, but these errors were encountered: