diff options
author | kotfu <kotfu@kotfu.net> | 2020-01-14 21:53:10 -0700 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2020-01-14 21:53:10 -0700 |
commit | 8247446728d09ee0de7b1e4312606126257f6d11 (patch) | |
tree | b6bf58913d250be10f1d1ff9a300e7e214d48ec4 /docs/features | |
parent | e156d1b83a48206d1a1712d569262bf9d5663de1 (diff) | |
download | cmd2-git-8247446728d09ee0de7b1e4312606126257f6d11.tar.gz |
Updates for allow_ansi -> allow_style
Diffstat (limited to 'docs/features')
-rw-r--r-- | docs/features/builtin_commands.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/features/builtin_commands.rst b/docs/features/builtin_commands.rst index ab4ca60e..2e434a50 100644 --- a/docs/features/builtin_commands.rst +++ b/docs/features/builtin_commands.rst @@ -23,7 +23,7 @@ A list of all user-settable parameters, with brief comments, is viewable from within a running application:: (Cmd) set --long - allow_ansi: Terminal # Allow ANSI escape sequences in output (valid values: Terminal, Always, Never) + allow_style: Terminal # Allow ANSI escape sequences in output (valid values: Terminal, Always, Never) continuation_prompt: > # On 2nd+ line of input debug: False # Show full error stack on error echo: False # Echo command issued into output @@ -38,7 +38,7 @@ within a running application:: Any of these user-settable parameters can be set while running your app with the ``set`` command like so:: - (Cmd) set allow_ansi Never + (Cmd) set allow_style Never Removing A Builtin Command |