summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2020-01-14 21:53:10 -0700
committerkotfu <kotfu@kotfu.net>2020-01-14 21:53:10 -0700
commit8247446728d09ee0de7b1e4312606126257f6d11 (patch)
treeb6bf58913d250be10f1d1ff9a300e7e214d48ec4 /docs
parente156d1b83a48206d1a1712d569262bf9d5663de1 (diff)
downloadcmd2-git-8247446728d09ee0de7b1e4312606126257f6d11.tar.gz
Updates for allow_ansi -> allow_style
Diffstat (limited to 'docs')
-rw-r--r--docs/features/builtin_commands.rst4
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