forked from nonsensical-dev/zenyx-engine
change the look of autocompletion
This commit is contained in:
parent
9be3dd2bbf
commit
f4500478fc
2 changed files with 5 additions and 1 deletions
|
@ -3,6 +3,7 @@ pub mod repl;
|
|||
|
||||
use std::{borrow::Borrow, collections::HashMap, sync::Arc};
|
||||
|
||||
use colored::Colorize;
|
||||
use lazy_static::lazy_static;
|
||||
use log::{debug, info};
|
||||
use parking_lot::RwLock;
|
||||
|
@ -128,6 +129,8 @@ impl CommandList {
|
|||
}
|
||||
(_, _) => command.execute(args),
|
||||
}
|
||||
} else {
|
||||
eprintln!("Command: '{}' was not found", name.red().italic());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue