We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cff29a5 + fc44a4f commit ac579f5Copy full SHA for ac579f5
clang-tools-extra/clangd/CodeComplete.cpp
@@ -2435,6 +2435,9 @@ CompletionItem CodeCompletion::render(const CodeCompleteOptions &Opts) const {
2435
}
2436
2437
llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const CodeCompletion &C) {
2438
+ OS << "Signature: " << "\"" << C.Signature << "\", "
2439
+ << "SnippetSuffix: " << "\"" << C.SnippetSuffix << "\""
2440
+ << ", Rendered:";
2441
// For now just lean on CompletionItem.
2442
return OS << C.render(CodeCompleteOptions());
2443
0 commit comments