From 5012f7a4c29014fdc71fbcca6e31bd8ebb319a6a Mon Sep 17 00:00:00 2001 From: David Marzal <2069735+Marzal@users.noreply.github.com> Date: Sat, 7 Jan 2023 21:43:56 +0100 Subject: [PATCH] docs: use literal toml strings in `continuation_prompt` docs (#4794) --- docs/advanced-config/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/advanced-config/README.md b/docs/advanced-config/README.md index 33fbdabd..afd47ce1 100644 --- a/docs/advanced-config/README.md +++ b/docs/advanced-config/README.md @@ -285,7 +285,7 @@ Produces a prompt like the following: Some shells support a continuation prompt along with the normal prompt. This prompt is rendered instead of the normal prompt when the user has entered an incomplete statement (such as a single left parenthesis or quote). -Starship can set the continuation prompt using the `continuation_prompt` option. The default prompt is `"[∙](bright-black) "`. +Starship can set the continuation prompt using the `continuation_prompt` option. The default prompt is `'[∙](bright-black) '`. Note: `continuation_prompt` should be set to a literal string without any variables. @@ -301,7 +301,7 @@ Note: Continuation prompts are only available in the following shells: # ~/.config/starship.toml # A continuation prompt that displays two filled in arrows -continuation_prompt = "▶▶" +continuation_prompt = '▶▶ ' ``` ## Style Strings