Reorganisation, plus de warnings
This commit is contained in:
8
src/shell/autocomplete.rs
Normal file
8
src/shell/autocomplete.rs
Normal file
@ -0,0 +1,8 @@
|
||||
pub fn autocomplete(input: &String) -> String {
|
||||
let faketab = format!(" --This is a fake output for autocomplete from {input}-- ");
|
||||
//In reality, we would keep the input and append to it
|
||||
let aaa = String::from(faketab);
|
||||
return aaa;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user