Cette fois, c'est bon, hein ?!

This commit is contained in:
Justine Pelletreau
2023-02-03 18:18:38 +01:00
parent d2eb54d369
commit 4d5cc2fa65

View File

@ -94,7 +94,8 @@ impl Search {
} }
}; };
if !&self.local_search { let xxx = &self.search_path.clone().into_os_string().into_string().unwrap();
if !&self.local_search && !res.contains(&xxx.as_str()) {
let return_val = format!("{} {}{}", &self.command, &self.search_path.display(), res); let return_val = format!("{} {}{}", &self.command, &self.search_path.display(), res);
return(return_val, res_lines); return(return_val, res_lines);
} else { } else {
@ -162,15 +163,7 @@ fn autocomplete_file(search: &Search) -> std::io::Result<(String, String)> {
*&mut ending.push_str("/"); *&mut ending.push_str("/");
} }
if !search.local_search { *&mut last_found = format!("{}{}", filename, ending);
*&mut last_found = format!("{}{}",
filename,
ending);
} else {
*&mut last_found = format!("{}{}",
filename,
ending);
}
} }
} }
//Found one or zero, use what has been found directly //Found one or zero, use what has been found directly