-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix documentation for Fish shell #88
Conversation
@@ -48,7 +48,7 @@ panicparse helps make sense of Go crash dumps: | |||
* Ubuntu (bash v4 or zsh): `|&` | |||
* macOS, [install bash 4+](README.md#updating-bash-on-macos), then: `|&` | |||
* Windows _or_ macOS with stock bash v3: `2>&1 |` | |||
* [Fish](http://fishshell.com/) shell: `^|` | |||
* [Fish](http://fishshell.com/) shell: `&|` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That was just a typo
**Fish**: `&|` redirects stderr and stdout. It's an alias for `2>&1 |` | ||
([fish piping](https://fishshell.com/docs/current/index.html#piping)): | ||
([fish piping](https://fishshell.com/docs/current/language.html#piping)): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The syntax there is correct, but the URL changed
Codecov ReportAll modified lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #88 +/- ##
=====================================
Coverage 83.4% 83.4%
=====================================
Files 12 12
Lines 2768 2768
=====================================
Hits 2308 2308
Misses 399 399
Partials 61 61 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
I'll have to fix the linter later. |
No description provided.