diff options
| -rw-r--r-- | src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index a9f64e9..9d8f191 100644 --- a/src/main.rs +++ b/src/main.rs @@ -72,6 +72,9 @@ fn run_command(raw: &ScopedRawMode, line: Vec<u8>) { return; } + b"from" => todo!("read from file"), + b"to" | b"into" => todo!("write into file"), + b"append" => todo!("append to file"), _ => (), } } |
