add ctrl+click breakpoints

This commit is contained in:
LenAnderson
2024-06-23 15:16:55 -04:00
parent 7cdc4c5713
commit 00652cce0a
3 changed files with 71 additions and 1 deletions

View File

@ -680,9 +680,10 @@ export class SlashCommandParser {
}
parseBreakPoint() {
const bp = new SlashCommandBreakPoint();
bp.start = this.index;
bp.start = this.index + 1;
this.take('/breakpoint'.length);
bp.end = this.index;
this.commandIndex.push(bp);
return bp;
}