Skip to content

Commit

Permalink
Fix prompt for Fish Shell
Browse files Browse the repository at this point in the history
$(...) not supported in Fish Shell. Must use (...) instead.
  • Loading branch information
cfinnberg authored Mar 6, 2021
1 parent 27899e1 commit a8132d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ Redefine `fish_prompt` in `~/.config/fish/config.fish`:

```bash
function fish_prompt
eval $GOPATH/bin/powerline-go -error $status -jobs $(jobs -p | wc -l)
eval $GOPATH/bin/powerline-go -error $status -jobs (jobs -p | wc -l)
end
```
### Nix
Expand Down

0 comments on commit a8132d2

Please sign in to comment.