debugger: Make prompt bold
This commit is contained in:
parent
1d766e95de
commit
fc6410b510
|
@ -255,7 +255,7 @@ impl Debugger {
|
||||||
let mut rl = Editor::<()>::new();
|
let mut rl = Editor::<()>::new();
|
||||||
rl.load_history(".rustboyadvance_history");
|
rl.load_history(".rustboyadvance_history");
|
||||||
while self.running {
|
while self.running {
|
||||||
let readline = rl.readline(&format!("({}) >> ", "rustboyadvance-dbg".cyan()));
|
let readline = rl.readline(&format!("({}) >> ", "rustboyadvance-dbg".bold().cyan()));
|
||||||
match readline {
|
match readline {
|
||||||
Ok(line) => {
|
Ok(line) => {
|
||||||
if line.is_empty() {
|
if line.is_empty() {
|
||||||
|
|
Reference in a new issue