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 24551df97..4b56189c6 100644
--- a/src/configs/shell.rs
+++ b/src/configs/shell.rs
@@ -11,6 +11,7 @@ pub struct ShellConfig<'a> {
pub powershell_indicator: &'a str,
pub ion_indicator: &'a str,
pub elvish_indicator: &'a str,
+ pub tcsh_indicator: &'a str,
pub disabled: bool,
}
@@ -24,6 +25,7 @@ impl<'a> RootModuleConfig<'a> for ShellConfig<'a> {
powershell_indicator: "psh",
ion_indicator: "ion",
elvish_indicator: "esh",
+ tcsh_indicator: "tsh",
disabled: true,
}
}