summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorOnigiri <4869909+onigiri070@users.noreply.github.com>2021-10-02 16:03:18 -0400
committerGitHub <noreply@github.com>2021-10-02 16:03:18 -0400
commite85a68578c210a911fc94fbf93c5cf5183bb5b2e (patch)
tree391ee08e04806165883b1b1d5167c403fab0f1a9 /docs
parent9637e331ad54d596df060f761e1f49f0a3193717 (diff)
docs(config): Add missing double quotes to default value strings (#2981)
Diffstat (limited to 'docs')
-rw-r--r--docs/config/README.md30
1 files changed, 15 insertions, 15 deletions
diff --git a/docs/config/README.md b/docs/config/README.md
index 37e7a3d03..efa231fee 100644
--- a/docs/config/README.md
+++ b/docs/config/README.md
@@ -1045,7 +1045,7 @@ default = "unknown user"
| Option | Default | Description |
| ---------- | ------------------------------ | ---------------------------------------------------------------------------- |
-| `symbol` | | The symbol used before displaying the variable value. |
+| `symbol` | `""` | The symbol used before displaying the variable value. |
| `variable` | | The environment variable to be displayed. |
| `default` | | The default value to be displayed when the selected variable is not defined. |
| `format` | `"with [$env_value]($style) "` | The format for the module. |
@@ -2707,19 +2707,19 @@ To enable it, set `disabled` to `false` in your configuration file.
### Options
-| Option | Default | Description |
-| ---------------------- | ------------- | ------------------------------------------------------------ |
-| `bash_indicator` | `bsh` | A format string used to represent bash. |
-| `fish_indicator` | `fsh` | A format string used to represent fish. |
-| `zsh_indicator` | `zsh` | A format string used to represent zsh. |
-| `powershell_indicator` | `psh` | A format string used to represent powershell. |
-| `ion_indicator` | `ion` | A format string used to represent ion. |
-| `elvish_indicator` | `esh` | A format string used to represent elvish. |
-| `tcsh_indicator` | `tsh` | A format string used to represent tcsh. |
-| `xonsh_indicator` | `xsh` | A format string used to represent xonsh. |
-| `unknown_indicator` | | The default value to be displayed when the shell is unknown. |
-| `format` | `$indicator ` | The format for the module. |
-| `disabled` | `true` | Disables the `shell` module. |
+| Option | Default | Description |
+| ---------------------- | --------------- | ------------------------------------------------------------ |
+| `bash_indicator` | `"bsh"` | A format string used to represent bash. |
+| `fish_indicator` | `"fsh"` | A format string used to represent fish. |
+| `zsh_indicator` | `"zsh"` | A format string used to represent zsh. |
+| `powershell_indicator` | `"psh"` | A format string used to represent powershell. |
+| `ion_indicator` | `"ion"` | A format string used to represent ion. |
+| `elvish_indicator` | `"esh"` | A format string used to represent elvish. |
+| `tcsh_indicator` | `"tsh"` | A format string used to represent tcsh. |
+| `xonsh_indicator` | `"xsh"` | A format string used to represent xonsh. |
+| `unknown_indicator` | `""` | The default value to be displayed when the shell is unknown. |
+| `format` | `"$indicator "` | The format for the module. |
+| `disabled` | `true` | Disables the `shell` module. |
### Variables
@@ -3256,7 +3256,7 @@ If you have an interesting example not covered there, feel free to share it ther
| Option | Default | Description |
| ------------- | ------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
-| `command` | | The command whose output should be printed. The command will be passed on stdin to the shell. |
+| `command` | `""` | The command whose output should be printed. The command will be passed on stdin to the shell. |
| `when` | | A shell command used as a condition to show the module. The module will be shown if the command returns a `0` status code. |
| `shell` | | [See below](#custom-command-shell) |
| `description` | `"<custom module>"` | The description of the module that is shown when running `starship explain`. |