Implement sub-command parsing + add on/word/line/over commands
This commit is contained in:
@@ -35,6 +35,10 @@ import {Undo} from "./undo.js";
|
||||
import {Unique} from "./unique.js";
|
||||
import {Unquote} from "./unquote.js";
|
||||
import {Upper} from "./upper.js";
|
||||
import {Over} from "./over.js";
|
||||
import {Line} from "./line.js";
|
||||
import {Word} from "./word.js";
|
||||
import {On} from "./on.js";
|
||||
|
||||
export type Commands = Command<CommandData>[]
|
||||
export const commands: Commands = [
|
||||
@@ -50,13 +54,16 @@ export const commands: Commands = [
|
||||
new Indent,
|
||||
new InFile,
|
||||
new Join,
|
||||
new Line,
|
||||
new Lines,
|
||||
new Lipsum,
|
||||
new Load,
|
||||
new Lower,
|
||||
new LSub,
|
||||
new Missing,
|
||||
new On,
|
||||
new OutFile,
|
||||
new Over,
|
||||
new Paste,
|
||||
new Prefix,
|
||||
new Quote,
|
||||
@@ -74,4 +81,5 @@ export const commands: Commands = [
|
||||
new Unique,
|
||||
new Unquote,
|
||||
new Upper,
|
||||
new Word,
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user