-
Notifications
You must be signed in to change notification settings - Fork 11
Completion is not triggered after member access operators #45
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
Comments
What happens if you do M-: (company-irony-prefix) RET after |
Thanks for swift response.
It returns Is this the expected return? |
Yeah, I think it is okay, it would expect (setq company-backends '(company-irony)) |
Interestingly enough, keeping |
The thing is, company interrogates the backends, and stop on the first one that can handle the request, other backends in the list aren't tried. So you have to order the list from the most to the least specific backend. That is, either: (setq company-backends '((
company-irony
company-c-headers
company-dabbrev-code
)))) Or: (setq company-backends '((company-c-headers
company-irony
company-dabbrev-code
))))
And |
Hi. First thanks for awesome package. I am having some trouble with company-irony: After typing
.
for class members or::
for namespace the company menu is not shown.In my settings I have
company-clang-begin-after-member-access
set to 1, however, with company-irony backend it seems it is not respected. If I remove the company-irony backend and use the company-clan then.
and::
triggers completion.I opened an issue in company repo (company-mode/company-mode#534) but I was suggested to post it here and I think it is right.
The relevant part of my setup reads as follow:
Any idea?
The text was updated successfully, but these errors were encountered: