summaryrefslogtreecommitdiffstats
path: root/docs/pl-PL/config/README.md
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.dev>2021-08-26 10:11:13 -0400
committerGitHub <noreply@github.com>2021-08-26 10:11:13 -0400
commitd77ea269f87ad4118d71ade218ee2e472fb6f2a7 (patch)
treea6ba530fd57dea000c7ddf2537b8627ad30eee72 /docs/pl-PL/config/README.md
parentf03c0825c0d9f99789128692324855a7d5baecca (diff)
docs(i18n): new Crowdin updates (#2985)
Diffstat (limited to 'docs/pl-PL/config/README.md')
-rw-r--r--docs/pl-PL/config/README.md55
1 files changed, 37 insertions, 18 deletions
diff --git a/docs/pl-PL/config/README.md b/docs/pl-PL/config/README.md
index 49d98bc4b..61f8fcfd2 100644
--- a/docs/pl-PL/config/README.md
+++ b/docs/pl-PL/config/README.md
@@ -1478,7 +1478,13 @@ symbol = "🌟 "
## Jobs
-The `jobs` module shows the current number of jobs running. The module will be shown only if there are background jobs running. The module will show the number of jobs running if there is more than 1 job, or more than the `threshold` config value, if it exists. If `threshold` is set to 0, then the module will also show when there are 0 jobs running.
+The `jobs` module shows the current number of jobs running. The module will be shown only if there are background jobs running. The module will show the number of jobs running if there are at least 2 jobs, or more than the `number_threshold` config value, if it exists. The module will show a symbol if there is at least 1 job, or more than the `symbol_threshold` config value, if it exists. You can set both values to 0 in order to *always* show the symbol and number of jobs, even if there are 0 jobs running.
+
+The default functionality is:
+
+- 0 jobs -> Nothing is shown.
+- 1 job -> `symbol` is shown.
+- 2 jobs or more -> `symbol` + `number` are shown.
::: warning
@@ -1486,15 +1492,26 @@ This module is not supported on tcsh and nu.
:::
+::: warning
+
+The `threshold` option is deprecated, but if you want to use it, the module will show the number of jobs running if there is more than 1 job, or more than the `threshold` config value, if it exists. If `threshold` is set to 0, then the module will also show when there are 0 jobs running.
+
+:::
+
### Options
-| Option | Default | Description |
-| ----------- | ----------------------------- | ------------------------------------------------ |
-| `threshold` | `1` | Show number of jobs if exceeded. |
-| `format` | `"[$symbol$number]($style) "` | The format for the module. |
-| `symbol` | `"✦"` | A format string representing the number of jobs. |
-| `style` | `"bold blue"` | The style for the module. |
-| `disabled` | `false` | Disables the `jobs` module. |
+| Option | Default | Description |
+| ------------------ | ----------------------------- | ------------------------------------------------------------------------ |
+| `threshold`\* | `1` | Show number of jobs if exceeded. |
+| `symbol_threshold` | `1` | Show `symbol` if the job count is at least `symbol_threshold`. |
+| `number_threshold` | `2` | Show the number of jobs if the job count is at least `number_threshold`. |
+| `format` | `"[$symbol$number]($style) "` | The format for the module. |
+| `symbol` | `"✦"` | The string used to represent the `symbol` variable. |
+| `style` | `"bold blue"` | The style for the module. |
+| `disabled` | `false` | Disables the `jobs` module. |
+ \*: This option is deprecated, please use the
+
+`number_threshold` and `symbol_threshold` options instead.
### Variables
@@ -1513,7 +1530,8 @@ This module is not supported on tcsh and nu.
[jobs]
symbol = "+ "
-threshold = 4
+number_threshold = 4
+symbol_threshold = 0
```
## Julia
@@ -2884,15 +2902,16 @@ The `vlang` module shows you your currently installed version of V. By default t
### Options
-| Option | Default | Description |
-| ------------------- | -------------------------------------------- | -------------------------------------------- |
-| `format` | `"via [$symbol($version )]($style)"` | The format for the module. |
-| `symbol` | `"V "` | A format string representing the symbol of V |
-| `detect_extensions` | `["v"]` | Which extensions should trigger this module. |
-| `detect_files` | `["v.mod", "vpkg.json", ".vpkg-lock.json" ]` | Which filenames should trigger this module. |
-| `detect_folders` | `[]` | Which folders should trigger this module. |
-| `style` | `"blue bold"` | The style for the module. |
-| `disabled` | `false` | Disables the `vlang` module. |
+| Option | Default | Description |
+| ------------------- | -------------------------------------------- | ------------------------------------------------------------------------- |
+| `format` | `"via [$symbol($version )]($style)"` | The format for the module. |
+| `version_format` | `"v${raw}"` | The version format. Available vars are `raw`, `major`, `minor`, & `patch` |
+| `symbol` | `"V "` | A format string representing the symbol of V |
+| `detect_extensions` | `["v"]` | Which extensions should trigger this module. |
+| `detect_files` | `["v.mod", "vpkg.json", ".vpkg-lock.json" ]` | Which filenames should trigger this module. |
+| `detect_folders` | `[]` | Which folders should trigger this module. |
+| `style` | `"blue bold"` | The style for the module. |
+| `disabled` | `false` | Disables the `vlang` module. |
### Variables