-
Notifications
You must be signed in to change notification settings - Fork 263
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
No more quickfixes #182
Comments
Fixed in 0.20181225.2 // src/messages/textDocumnt_code.cc
void MessageHandler::textDocument_codeAction(CodeActionParam ¶m,
ReplyOnce &reply) {
...
for (Diagnostic &diag : diagnostics)
if (diag.fixits_.size() &&
(param.range.Intersects(diag.range) || ////////// use Intersects
llvm::any_of(diag.fixits_, [&](const TextEdit &edit) {
return param.range.Intersects(edit.range);
}))) { |
|
Ops, sorry, I was grabbing some cache not latest. It's fixed on tip. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As reported on coc.nvim gitter channel, ccls used to work when coc sent request on code action about quickfixes. It works on latest ccls release, doesn't work on lastest commit anymore.
The text was updated successfully, but these errors were encountered: