From 2e6f7c012e2923ff9d40fc66e4c03edee850cf6a Mon Sep 17 00:00:00 2001 From: Adrien Burgun Date: Tue, 12 Jul 2022 13:58:54 +0200 Subject: [PATCH] :pencil: Add missing commands in help --- stackline-cli/src/main.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stackline-cli/src/main.rs b/stackline-cli/src/main.rs index e68d580..95963c6 100644 --- a/stackline-cli/src/main.rs +++ b/stackline-cli/src/main.rs @@ -204,6 +204,8 @@ fn main() { println!("- `get `: prints the JSON-serialized data of the tile at (x, y)"); println!("- `set `: sets the tile at (x, y) to a default tilename"); println!("- `remove `: removes the tile at (x, y)"); + println!("- `copy `: copies a tile"); + println!("- `move `: moves a tile"); println!("- `prop [data]`: sets the property of the tile at (x, y)"); println!(" if the tile is a single tuple struct, then prop_name is ignored."); @@ -217,6 +219,9 @@ fn main() { println!("- `clear `: clears the signal of the tile at (x, y)"); println!("- `dir `: sets the direction of the signal at (x, y)"); + println!("- `pane `: creates a new pane at the given position/dimension"); + println!("- `panes`: lists panes"); + println!("- `run `: runs a number of steps"); println!("- `step`: runs a single step"); println!("- `load [file]`: saves the current state to `file` (defaults to the path in the parameters)");