mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-24 13:47:38 +00:00
fix(tcsh): remove quotes and escape backticks (#2429)
* 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> * fix(Tcsh): remove unecessary quotes 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:
parent
30910cb4ac
commit
69b9bf72c3
@ -242,7 +242,7 @@ shown below. Can't see yours? Have a look at the [extra platform instructions](h
|
|||||||
```sh
|
```sh
|
||||||
# ~/.tcshrc
|
# ~/.tcshrc
|
||||||
|
|
||||||
eval "`starship init tcsh`"
|
eval `starship init tcsh`
|
||||||
```
|
```
|
||||||
|
|
||||||
## 🤝 Contributing
|
## 🤝 Contributing
|
||||||
|
@ -122,6 +122,6 @@ description: Starship is the minimal, blazing fast, and extremely customizable p
|
|||||||
```sh
|
```sh
|
||||||
# ~/.tcshrc
|
# ~/.tcshrc
|
||||||
|
|
||||||
eval "`starship init tcsh`"
|
eval `starship init tcsh`
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -446,5 +446,5 @@ info "Please follow the steps for your shell to complete the installation:
|
|||||||
${BOLD}${UNDERLINE}Tcsh${NO_COLOR}
|
${BOLD}${UNDERLINE}Tcsh${NO_COLOR}
|
||||||
Add the following to the end of ${BOLD}~/.tcshrc${NO_COLOR}:
|
Add the following to the end of ${BOLD}~/.tcshrc${NO_COLOR}:
|
||||||
|
|
||||||
eval "`starship init tcsh`"
|
eval \`starship init tcsh\`
|
||||||
"
|
"
|
||||||
|
Loading…
Reference in New Issue
Block a user