aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorJonas Maier <>2026-03-06 18:49:33 +0100
committerJonas Maier <>2026-03-06 18:49:33 +0100
commit2e55d27f565ec96c7238b35191ae5c65c2b6bc57 (patch)
tree788c0e1b41597303640b5f4475d82eb9656a4075 /src/main.rs
parent44628890b64befde0a1bb147d82d9bfe48b7e1af (diff)
downloadpish-2e55d27f565ec96c7238b35191ae5c65c2b6bc57.tar.gz
shell expansion somewhat working (?)
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 8a6e84e..c66ec67 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -100,7 +100,7 @@ impl Session {
}
fn prompt(&self) -> String {
- format!("{} $ ", self.pretty_cwd())
+ format!("[{}]# ", self.pretty_cwd())
}
fn clear_prompt(&mut self) {