Add flatten command, accessing destructured elements by index, WIP support for regular expressions

This commit is contained in:
2026-04-20 21:56:02 -05:00
parent fa851b680e
commit 37c27e5d0b
11 changed files with 206 additions and 21 deletions

View File

@@ -53,6 +53,7 @@ import {Chunk} from "./chunk.js";
import {Script} from "./script.js";
import {Take} from "./take.js";
import {Group} from "./group.js";
import {Flatten} from "./flatten.js";
export type Commands = Command<CommandData>[]
export const commands: Commands = [
@@ -68,6 +69,7 @@ export const commands: Commands = [
new Edit,
new Enclose,
new Exit,
new Flatten,
new From,
new Group,
new Help,