Skip to content
Snippets Groups Projects
Commit 96553fd3 authored by stratact's avatar stratact
Browse files

:ambulance: Simplify get_simplified_directory

parent 0108434e
No related branches found
No related tags found
No related merge requests found
......@@ -540,11 +540,7 @@ impl Variables {
/// Useful for getting smaller prompts, this will produce a simplified variant of the
/// working directory which the leading `HOME` prefix replaced with a tilde character.
fn get_simplified_directory(&self) -> types::Str {
let home = match self.get::<types::Str>("HOME") {
Some(string) => string,
None => "?".into(),
};
let home = self.get::<types::Str>("HOME").unwrap_or_else(|| "?".into());
env::var("PWD").unwrap().replace(&*home, "~").into()
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment