summaryrefslogtreecommitdiffstats
path: root/src/configs/shell.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/configs/shell.rs')
-rw-r--r--src/configs/shell.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/configs/shell.rs b/src/configs/shell.rs
index 445c1bb9e..6be8b13a1 100644
--- a/src/configs/shell.rs
+++ b/src/configs/shell.rs
@@ -13,6 +13,7 @@ pub struct ShellConfig<'a> {
pub ion_indicator: &'a str,
pub elvish_indicator: &'a str,
pub tcsh_indicator: &'a str,
+ pub unknown_indicator: &'a str,
pub disabled: bool,
}
@@ -27,6 +28,7 @@ impl<'a> Default for ShellConfig<'a> {
ion_indicator: "ion",
elvish_indicator: "esh",
tcsh_indicator: "tsh",
+ unknown_indicator: "",
disabled: true,
}
}