@@ -398,7 +398,8 @@ def __init__(
398398 instantiate and register all commands. If False, CommandSets
399399 must be manually installed with `register_command_set`.
400400 :param auto_suggest: If True, cmd2 will provide fish shell style auto-suggestions
401- based on history. If False, these will not be provided.
401+ based on history. User can press right-arrow key to accept the
402+ provided suggestion.
402403 :param bottom_toolbar: if ``True``, then a bottom toolbar will be displayed.
403404 :param command_sets: Provide CommandSet instances to load during cmd2 initialization.
404405 This allows CommandSets with custom constructor parameters to be
@@ -467,7 +468,6 @@ def __init__(
467468 self .interactive_pipe = False
468469
469470 # Attributes which ARE dynamically settable via the set command at runtime
470- self .always_show_hint = False
471471 self .debug = False
472472 self .echo = False
473473 self .editor = self .DEFAULT_EDITOR
@@ -1356,10 +1356,6 @@ def allow_style_type(value: str) -> ru.AllowStyle:
13561356 choices_provider = get_allow_style_choices ,
13571357 )
13581358 )
1359-
1360- self .add_settable (
1361- Settable ("always_show_hint" , bool , "Display completion hint even when completion suggestions print" , self )
1362- )
13631359 self .add_settable (Settable ("debug" , bool , "Show full traceback on exception" , self ))
13641360 self .add_settable (Settable ("echo" , bool , "Echo command issued into output" , self ))
13651361 self .add_settable (Settable ("editor" , str , "Program used by 'edit'" , self ))
0 commit comments