@@ -229,14 +229,17 @@ def my_completer(self, text, line, begidx, endidx, arg_tokens)
229229 ZERO_OR_MORE ,
230230 ArgumentError ,
231231)
232- from collections .abc import Callable , Iterable , Sequence
233- from gettext import (
234- gettext ,
232+ from collections .abc import (
233+ Callable ,
234+ Iterable ,
235+ Sequence ,
235236)
237+ from gettext import gettext
236238from typing import (
237239 IO ,
238240 TYPE_CHECKING ,
239241 Any ,
242+ ClassVar ,
240243 NoReturn ,
241244 Optional ,
242245 Protocol ,
@@ -245,6 +248,8 @@ def my_completer(self, text, line, begidx, endidx, arg_tokens)
245248 runtime_checkable ,
246249)
247250
251+ from rich_argparse import RawTextRichHelpFormatter
252+
248253from . import (
249254 ansi ,
250255 constants ,
@@ -991,9 +996,25 @@ def _SubParsersAction_remove_parser(self: argparse._SubParsersAction, name: str)
991996############################################################################################################
992997
993998
994- class Cmd2HelpFormatter (argparse . RawTextHelpFormatter ):
999+ class Cmd2HelpFormatter (RawTextRichHelpFormatter ):
9951000 """Custom help formatter to configure ordering of help text."""
9961001
1002+ # rich-argparse formats all group names with str.title().
1003+ # Override their formatter to do nothing.
1004+ group_name_formatter : ClassVar [Callable [[str ], str ]] = str
1005+
1006+ # Disable automatic highlighting in the help text.
1007+ highlights : ClassVar [list [str ]] = []
1008+
1009+ # Disable markup rendering in usage, help, description, and epilog text.
1010+ # cmd2's built-in commands do not escape opening brackets in their help text
1011+ # and therefore rely on these settings being False. If you desire to use
1012+ # markup in your help text, inherit from Cmd2HelpFormatter and override
1013+ # these settings in that child class.
1014+ usage_markup : ClassVar [bool ] = False
1015+ help_markup : ClassVar [bool ] = False
1016+ text_markup : ClassVar [bool ] = False
1017+
9971018 def _format_usage (
9981019 self ,
9991020 usage : Optional [str ],
0 commit comments