mapPlaceholderToSuggestion method added. see #553

This commit is contained in:
mic 2025-12-26 22:48:09 +01:00
parent 5468928673
commit 385241efb3

View file

@ -573,6 +573,13 @@ export const placeholdersUtils = {
return '';
}
return element;
}
},
mapPlaceholderToSuggestion(p) {
return {
command: '{%' + p.id + '%}',
type: p.type
};
},
}