mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-02 23:12:08 +00:00
Remove unneeded code
This commit is contained in:
parent
26584cac81
commit
bcdb8690f0
@ -350,20 +350,6 @@ struct TextDocumentCompletionHandler : MessageHandler {
|
|||||||
|
|
||||||
QueueManager::WriteStdout(IpcId::TextDocumentCompletion, out);
|
QueueManager::WriteStdout(IpcId::TextDocumentCompletion, out);
|
||||||
} else {
|
} else {
|
||||||
// If existing completion is empty, dont return clang-based completion
|
|
||||||
// results Only do this when trigger is not manual or context doesn't
|
|
||||||
// exist (for Atom support).
|
|
||||||
if (existing_completion.empty() && is_global_completion &&
|
|
||||||
(!request->params.context || request->params.context->triggerKind ==
|
|
||||||
lsCompletionTriggerKind::TriggerCharacter)) {
|
|
||||||
LOG_S(INFO) << "Existing completion is empty, no completion results "
|
|
||||||
"will be returned";
|
|
||||||
Out_TextDocumentComplete out;
|
|
||||||
out.id = request->id;
|
|
||||||
QueueManager::WriteStdout(IpcId::TextDocumentCompletion, out);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
ClangCompleteManager::OnComplete callback = std::bind(
|
ClangCompleteManager::OnComplete callback = std::bind(
|
||||||
[this, is_global_completion, existing_completion, request](
|
[this, is_global_completion, existing_completion, request](
|
||||||
const std::vector<lsCompletionItem>& results,
|
const std::vector<lsCompletionItem>& results,
|
||||||
|
Loading…
Reference in New Issue
Block a user