I have my company backends set to (company-c-headers company-irony), (add-hook 'irony-mode-hook #'company-irony-setup-begin-commands) is in my init.el, here's how to reproduce the issue:
Start typing #include and use company-irony's completion candidate to complete it to #include <| (where | represents the cursor, at this point my company frontend is already started, I think company-irony does that)
Type some string and use M-n / M-p to select one of company-c-headers's completion candidates.
The candidate does not get inserted, the completion menu disappears and I am left with #include |>.
Do you know what's the problem here and can you reproduce it? I also posted this issue on company-c-headers's repo.
I have my company backends set to
(company-c-headers company-irony)
,(add-hook 'irony-mode-hook #'company-irony-setup-begin-commands)
is in my init.el, here's how to reproduce the issue:#include
and use company-irony's completion candidate to complete it to#include <|
(where|
represents the cursor, at this point my company frontend is already started, I think company-irony does that)company-c-headers
's completion candidates.#include |>
.Do you know what's the problem here and can you reproduce it? I also posted this issue on company-c-headers's repo.