mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 15:45:08 +00:00
Insert qualified name right before matching paren ( of last ) in function's type spelling
Before, function<int(int)> and (anon) mess up the function signature
This commit is contained in:
parent
9d4cf2a351
commit
2056e44d22
@ -1186,15 +1186,26 @@ void OnIndexDeclaration(CXClientData client_data, const CXIdxDeclInfo* decl) {
|
||||
std::string qualified_name =
|
||||
ns->QualifiedName(decl->semanticContainer, func->def.short_name);
|
||||
std::string type_desc = decl_cursor.get_type_description();
|
||||
size_t offset = type_desc.find('(');
|
||||
if (offset != std::string::npos) {
|
||||
{
|
||||
size_t offset = 0;
|
||||
if (type_desc.back() == ')') {
|
||||
size_t balance = 0;
|
||||
for (offset = type_desc.size(); offset; ) {
|
||||
offset--;
|
||||
if (type_desc[offset] == ')')
|
||||
balance++;
|
||||
else if (type_desc[offset] == '(' && --balance == 0)
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (offset > 0) {
|
||||
type_desc.insert(offset, qualified_name);
|
||||
func->def.detailed_name = type_desc;
|
||||
} else {
|
||||
// type_desc is probably the name of a typedef.
|
||||
func->def.detailed_name = type_desc + " " + qualified_name;
|
||||
}
|
||||
func->def.hover = func->def.detailed_name;
|
||||
}
|
||||
|
||||
// Add function usage information. We only want to do it once per
|
||||
// definition/declaration. Do it on definition since there should only
|
||||
|
Loading…
Reference in New Issue
Block a user