1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-12-26 19:40:20 +00:00

doc: small doc fixups

This commit is contained in:
Matan Kushner 2020-09-19 14:50:52 -04:00
parent e5bf405a73
commit 3c668e6e6a
No known key found for this signature in database
GPG Key ID: B791E33704A84549

View File

@ -1109,7 +1109,7 @@ current directory.
| Option | Default | Description | | Option | Default | Description |
| ----------------- | ------------------------------------------- | ---------------------------------------------------- | | ----------------- | ------------------------------------------- | ---------------------------------------------------- |
| `format` | "([\[$all_status$ahead_behind\]]($style) )" | The default format for `git_status` | | `format` | `"[\[$all_status$ahead_behind\]]($style) "` | The default format for `git_status` |
| `conflicted` | `"="` | This branch has merge conflicts. | | `conflicted` | `"="` | This branch has merge conflicts. |
| `ahead` | `"⇡"` | The format of `ahead` | | `ahead` | `"⇡"` | The format of `ahead` |
| `behind` | `"⇣"` | The format of `behind` | | `behind` | `"⇣"` | The format of `behind` |
@ -1913,7 +1913,6 @@ python_binary = "python3"
[python] [python]
symbol = "👾 " symbol = "👾 "
pyenv_version_name = true pyenv_version_name = true
pyenv_prefix = "foo "
``` ```
## Ruby ## Ruby
@ -2422,12 +2421,11 @@ with shell details and starship configuration if you hit such scenario.
command = "echo foo" # shows output of command command = "echo foo" # shows output of command
files = ["foo"] # can specify filters files = ["foo"] # can specify filters
when = """ test "$HOME" == "$PWD" """ when = """ test "$HOME" == "$PWD" """
prefix = " transcending " format = " transcending [$output]($style)"
[custom.time] [custom.time]
command = "time /T" command = "time /T"
files = ["*.pst"] files = ["*.pst"]
prefix = "transcending "
shell = ["pwsh.exe", "-NoProfile", "-Command", "-"] shell = ["pwsh.exe", "-NoProfile", "-Command", "-"]
``` ```