Tweak TLDR visual formatting, Fix applying RichText to prompts
This commit is contained in:
@ -88,6 +88,7 @@ flx.add_command(
|
||||
name="test_args",
|
||||
action=test_args,
|
||||
),
|
||||
style="bold blue",
|
||||
argument_config=default_config,
|
||||
)
|
||||
|
||||
|
@ -70,7 +70,7 @@ async def build_chain(dogs: list[Dog]) -> ChainedAction:
|
||||
),
|
||||
ConfirmAction(
|
||||
name="test_confirm",
|
||||
message="Do you want to process the dogs?",
|
||||
prompt_message="Do you want to process the dogs?",
|
||||
confirm_type="yes_no_cancel",
|
||||
return_last_result=True,
|
||||
inject_into="dogs",
|
||||
|
@ -22,7 +22,7 @@ chain = ChainedAction(
|
||||
"Name",
|
||||
UserInputAction(
|
||||
name="User Input",
|
||||
prompt_text="Enter your {last_result}: ",
|
||||
prompt_message="Enter your {last_result}: ",
|
||||
validator=validate_alpha(),
|
||||
),
|
||||
Action(
|
||||
|
Reference in New Issue
Block a user