add todo
This commit is contained in:
parent
eada03a570
commit
916360671a
1 changed files with 7 additions and 0 deletions
|
@ -94,9 +94,12 @@ fn parse_semicolon(end: Result<usize, ParseIntError>) -> Address {
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum Command {
|
pub enum Command {
|
||||||
|
// TODO
|
||||||
Append(Address),
|
Append(Address),
|
||||||
Insert(Address),
|
Insert(Address),
|
||||||
|
// TODO
|
||||||
Change(Address),
|
Change(Address),
|
||||||
|
// TODO
|
||||||
Delete(Address),
|
Delete(Address),
|
||||||
// bool pour check ou pas (e et E) TODO mettre le chemin vers le fichier
|
// bool pour check ou pas (e et E) TODO mettre le chemin vers le fichier
|
||||||
Edit(bool),
|
Edit(bool),
|
||||||
|
@ -106,14 +109,18 @@ pub enum Command {
|
||||||
Help,
|
Help,
|
||||||
// TODO
|
// TODO
|
||||||
SetHelp,
|
SetHelp,
|
||||||
|
// TODO
|
||||||
Join(Address),
|
Join(Address),
|
||||||
// TODO nom de la marque
|
// TODO nom de la marque
|
||||||
Mark(Address),
|
Mark(Address),
|
||||||
|
// TODO
|
||||||
List(Address),
|
List(Address),
|
||||||
// TODO
|
// TODO
|
||||||
Move(Address),
|
Move(Address),
|
||||||
|
// TODO
|
||||||
Number(Address),
|
Number(Address),
|
||||||
Print(Address),
|
Print(Address),
|
||||||
|
// TODO
|
||||||
Prompt,
|
Prompt,
|
||||||
// bool pour check ou pas (q et Q)
|
// bool pour check ou pas (q et Q)
|
||||||
Quit(bool),
|
Quit(bool),
|
||||||
|
|
Loading…
Reference in a new issue