summaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
authorVivek Malneedi <vivekmalneedi@gmail.com>2021-02-27 13:55:27 -0500
committerGitHub <noreply@github.com>2021-02-27 19:55:27 +0100
commitd21400a4784e17b7a4afe110155c01717f835388 (patch)
treefad57a93c82b1e6b1ec32cbf55a0a9137145ab8f /src/modules
parentce2f844a2f5cb3a8bb12ce16acf3bcb9aaff5255 (diff)
feat: add support for tcsh (#2288)
* feat: add support for tcsh * add tcsh to install.sh install message * list tcsh in bug_report.rs and main.rs * quote starship path Co-authored-by: David Knaack <davidkna@users.noreply.github.com> * fix job count * add tcsh support to shell module * fix STARSHIP_START_TIME undefined error * preserve existing user precmd and postcmd, remove jobs support * remove unnecessary parentheses * minor script improvement * removes parens from install script message * Update docs/config/README.md Co-authored-by: Thomas O'Donnell <andytom@users.noreply.github.com> Co-authored-by: David Knaack <davidkna@users.noreply.github.com> Co-authored-by: Thomas O'Donnell <andytom@users.noreply.github.com>
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/shell.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/shell.rs b/src/modules/shell.rs
index fe90b2e89..fc51b52f7 100644
--- a/src/modules/shell.rs
+++ b/src/modules/shell.rs
@@ -23,6 +23,7 @@ pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
Shell::PowerShell => Some(config.powershell_indicator),
Shell::Ion => Some(config.ion_indicator),
Shell::Elvish => Some(config.elvish_indicator),
+ Shell::Tcsh => Some(config.tcsh_indicator),
Shell::Unknown => None,
},
_ => None,