mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-137372 Live templates speed search matching can honor group name in addition to the template prefix
This commit is contained in:
@@ -75,10 +75,9 @@ class LiveTemplateTree extends CheckboxTree implements DataProvider, CopyProvide
|
||||
}
|
||||
if (object instanceof TemplateImpl) {
|
||||
TemplateImpl template = (TemplateImpl)object;
|
||||
return StringUtil.notNullize(template.getKey()) +
|
||||
" " +
|
||||
StringUtil.notNullize(template.getDescription()) +
|
||||
" " +
|
||||
return StringUtil.notNullize(template.getGroupName()) + " " +
|
||||
StringUtil.notNullize(template.getKey()) + " " +
|
||||
StringUtil.notNullize(template.getDescription()) + " " +
|
||||
template.getTemplateText();
|
||||
}
|
||||
return "";
|
||||
|
||||
Reference in New Issue
Block a user