Skip to content

Commit

Permalink
fix(tcsh): remove quotes and escape backticks (starship#2429)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>

* 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 <[email protected]>

* fix(Tcsh): remove unecessary quotes

Co-authored-by: David Knaack <[email protected]>
Co-authored-by: Thomas O'Donnell <[email protected]>
  • Loading branch information
3 people authored Mar 12, 2021
1 parent 30910cb commit 69b9bf7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ shown below. Can't see yours? Have a look at the [extra platform instructions](h
```sh
# ~/.tcshrc

eval "`starship init tcsh`"
eval `starship init tcsh`
```

## 🤝 Contributing
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,6 @@ description: Starship is the minimal, blazing fast, and extremely customizable p
```sh
# ~/.tcshrc

eval "`starship init tcsh`"
eval `starship init tcsh`
```

2 changes: 1 addition & 1 deletion install/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -446,5 +446,5 @@ info "Please follow the steps for your shell to complete the installation:
${BOLD}${UNDERLINE}Tcsh${NO_COLOR}
Add the following to the end of ${BOLD}~/.tcshrc${NO_COLOR}:
eval "`starship init tcsh`"
eval \`starship init tcsh\`
"

0 comments on commit 69b9bf7

Please sign in to comment.