From 39598ec691387637e144799f2d8a983148fd0a57 Mon Sep 17 00:00:00 2001 From: Kevin Song Date: Sat, 10 Aug 2019 14:30:30 -0700 Subject: =?UTF-8?q?feat:=20Add=20configuration=20to=20change=20the=20chara?= =?UTF-8?q?cter=20for=20non-zero=20sta=E2=80=A6=20(#133)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Prompt can now switch characters in addition to switching character color. Add configuration options in so that users can do either, both, or neither. --- docs/config/README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'docs') diff --git a/docs/config/README.md b/docs/config/README.md index 772fa6b41..d86ae3391 100644 --- a/docs/config/README.md +++ b/docs/config/README.md @@ -89,16 +89,18 @@ discharging_symbol = "💀" The `character` module shows a character (usually an arrow) beside where the text is entered in your terminal. -The character will be green if the status of your -last command had a successful status code (zero), and will be red if the last -command had an unsuccessful status code (non-zero). +The character will tell you whether the last command was successful or not. It +can do this in two ways: by changing color (red/green) or by changing its shape +(➜/✖). The latter will only be done if `use_symbol_for_status` is set to `true`. ### Options | Variable | Default | Description | | ---------- | ------- | ---------------------------------------------------- | -| `symbol` | `"➜"` | The symbol used before the text input in the prompt. | -| `disabled` | `false` | Disables the `character` module. | +| `symbol` | `"➜"` | The symbol used before the text input in the prompt. | +| `error_symbol` | `"✖"` | The symbol used before text input if the previous command failed. | +| `use_symbol_for_status` | `false` | Indicate error status by changing the symbol. | +| `disabled` | `false` | Disables the `character` module. | ### Example @@ -107,6 +109,8 @@ command had an unsuccessful status code (non-zero). [character] symbol = "❯" +error_symbol = "✗" +use_symbol_for_status = true ``` ## Command Duration -- cgit v1.2.3