Compare commits

...

2 Commits

View File

@ -539,6 +539,7 @@ pub mod shell {
} else {
current_pos = 0;
max_pos = 0;
mycommand = transform_alias(&conf, mycommand);
run_cmd(&mut mycommand,
&mut current_number,
&mut conf,
@ -552,8 +553,9 @@ pub mod shell {
append_prev_arg(&mut mycommand, &mut current_pos, &mut max_pos);
},
'!' => {
let mut cmd = format!("echo -- ALIASES --> {:?}", conf.hotkeys);
run_cmd(&mut cmd, &mut current_number, &mut conf, &mut stdout);
let mut cmd = format!("\r\n-- ALIASES --> \r\n{:?}\r\n", conf.hotkeys);
cmd = cmd.replace(",", "\r\n");
write!(stdout, "{}", cmd);
},
_ => (),