) => void) => {
        const matches = [];
        for (const name of emojiKeys) {
          if (name.includes(query)) {
            matches.push(name);
            if (matches.length > 5) break;
          }
        }
        cb(matches);
      },
      lookup: (item: TributeItem) => item,
      selectTemplate: (item: TributeItem) => {
        if (item === undefined) return null;
        return emojiString(item.original);
      },
      menuItemTemplate: (item: TributeItem) => {
        return html`${htmlRaw(emojiHTML(item.original))}${item.original}
`;
      },
    }, { // mentions
      values: window.config.mentionValues ?? [],
      requireLeadingSpace: true,
      menuItemTemplate: (item: TributeItem) => {
        const fullNameHtml = item.original.fullname && item.original.fullname !== '' ? html`${item.original.fullname}` : '';
        return html`
          
             ${item.original.name}
            ${item.original.name}
            ${htmlRaw(fullNameHtml)}
          
 
        `;
      },
    },
  ];
  // @ts-expect-error TS2351: This expression is not constructable (strange, why)
  const tribute = new Tribute({collection: collections, noMatchTemplate: ''});
  tribute.attach(element);
  return tribute;
}