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>
This commit is contained in:
Vivek Malneedi
2021-02-27 13:55:27 -05:00
committed by GitHub
parent ce2f844a2f
commit d21400a478
14 changed files with 70 additions and 1 deletions
+1
View File
@@ -205,6 +205,7 @@ fn get_config_path(shell: &str) -> Option<PathBuf> {
}
"zsh" => Some(".zshrc"),
"elvish" => Some(".elvish/rc.elv"),
"tcsh" => Some(".tcshrc"),
_ => None,
}
.map(|path| home_dir.join(path))