You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#1627: Removed feedback_to_output settable and made pfeedback consistent (#1647)
This change removes the feedback_to_output settable. It also does the following:
- pfeedback always outputs to self.stdout when the quiet settable is Falsae
- cmd2 now makes more consistent use of peedback for non-essential output that is silenceable
- Status into that we don't want to be re-directable, like elapsed timing data, now outputs to stderr, but without any color or style
- Improve user experience of the set command by consolidating output into 1 line and allowing for the output to be hidden when quiet is set. The previous output was overly verbose (three lines) and could not be silenced.
Copy file name to clipboardExpand all lines: docs/features/initialization.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,6 @@ Here are instance attributes of `cmd2.Cmd` which developers might wish to overri
43
43
-**editor**: text editor program to use with _edit_ command (e.g. `vim`)
44
44
-**exclude_from_history**: commands to exclude from the _history_ command
45
45
-**exit_code**: this determines the value returned by `cmdloop()` when exiting the application
46
-
-**feedback_to_output**: if `True`, send nonessential output to stdout, if `False` send them to stderr (Default: `False`)
47
46
-**help_error**: the error that prints when no help information can be found
48
47
-**hidden_commands**: commands to exclude from the help menu and tab completion
49
48
-**last_result**: stores results from the last command run to enable usage of results in a Python script or interactive console. Built-in commands don't make use of this. It is purely there for user-defined commands and convenience.
0 commit comments