|
@@ -85,7 +85,7 @@ impl Shell {
|
|
crossterm::terminal::enable_raw_mode().expect("failed to enable raw mode");
|
|
crossterm::terminal::enable_raw_mode().expect("failed to enable raw mode");
|
|
loop {
|
|
loop {
|
|
self.printer.init_before_readline();
|
|
self.printer.init_before_readline();
|
|
- if self.readline(0) == 0 {
|
|
|
|
|
|
+ if self.readline() == 0 {
|
|
println!();
|
|
println!();
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
@@ -151,7 +151,7 @@ impl Shell {
|
|
buf[0]
|
|
buf[0]
|
|
}
|
|
}
|
|
|
|
|
|
- fn readline(&mut self, _fd: usize) -> usize {
|
|
|
|
|
|
+ fn readline(&mut self) -> usize {
|
|
let mut stdout = std::io::stdout();
|
|
let mut stdout = std::io::stdout();
|
|
self.history_commands.push(Rc::clone(&self.printer.buf));
|
|
self.history_commands.push(Rc::clone(&self.printer.buf));
|
|
let mut command_index = self.history_commands.len() - 1;
|
|
let mut command_index = self.history_commands.len() - 1;
|
|
@@ -285,9 +285,9 @@ impl Shell {
|
|
println!();
|
|
println!();
|
|
for candidate in candidates {
|
|
for candidate in candidates {
|
|
print!(
|
|
print!(
|
|
- "{} ",
|
|
|
|
|
|
+ "{}\t",
|
|
if candidate.ends_with('/') {
|
|
if candidate.ends_with('/') {
|
|
- candidate.cyan()
|
|
|
|
|
|
+ candidate.truecolor(0x00, 0x88, 0xff)
|
|
} else {
|
|
} else {
|
|
candidate.white()
|
|
candidate.white()
|
|
}
|
|
}
|
|
@@ -446,14 +446,6 @@ impl Printer {
|
|
fn print(bytes: &[u8]) {
|
|
fn print(bytes: &[u8]) {
|
|
print!("{}", String::from_utf8(bytes.to_vec()).unwrap());
|
|
print!("{}", String::from_utf8(bytes.to_vec()).unwrap());
|
|
}
|
|
}
|
|
-
|
|
|
|
- fn print_color(bytes: &[u8], front_color: usize, background_color: usize) {
|
|
|
|
- std::io::stdout().flush().unwrap();
|
|
|
|
- let cstr = std::ffi::CString::new(bytes).unwrap();
|
|
|
|
- unsafe {
|
|
|
|
- dsc::syscall!(SYS_PUT_STRING, cstr.as_ptr(), front_color, background_color);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
|
|
|
|
pub fn _print_color_example() {
|
|
pub fn _print_color_example() {
|