add {{arg::*}} to replace missing args with empty string

This commit is contained in:
LenAnderson
2024-07-05 19:14:30 -04:00
parent 88718d89bc
commit 3144c219fa
2 changed files with 2 additions and 0 deletions

View File

@ -109,6 +109,7 @@ export class QuickReplySet {
const parser = new SlashCommandParser();
const closure = parser.parse(qr.message, true, [], qr.abortController, qr.debugController);
closure.onProgress = (done, total) => qr.updateEditorProgress(done, total);
closure.scope.setMacro('arg::*', '');
// closure.abortController = qr.abortController;
// closure.debugController = qr.debugController;
// const stepper = closure.executeGenerator();