*/
export function getCopilotConfigSlashCommandItems(typed: string, state?: ICopilotConfigSlashCommandState): ICopilotConfigSlashCommandItem[] {
const items: ICopilotConfigSlashCommandItem[] = [];
for (const command of getConfigSlashCommands()) {
if (typedLower
&& !command.command.toLowerCase().startsWith(typedLower)
&& (typedLower.length === 1 || matchesFuzzy2(typedLower, command.command) === null)
continue;
}