summaryrefslogtreecommitdiff
path: root/docs/api
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2020-09-09 01:03:21 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2020-09-09 01:03:21 -0400
commitd582466335d3182a15dc40bf2d8b6737fb158d46 (patch)
tree912c44bae977727cb0faa2d307fe87d1c48495b4 /docs/api
parenta95034f9537b498acb09943cde7c323001206937 (diff)
downloadcmd2-git-d582466335d3182a15dc40bf2d8b6737fb158d46.tar.gz
Moved two classes from cmd2.py to utils.py.
Diffstat (limited to 'docs/api')
-rw-r--r--docs/api/cmd.rst23
-rw-r--r--docs/api/utils.rst27
2 files changed, 27 insertions, 23 deletions
diff --git a/docs/api/cmd.rst b/docs/api/cmd.rst
index 3bcc302f..6fdfbf27 100644
--- a/docs/api/cmd.rst
+++ b/docs/api/cmd.rst
@@ -65,26 +65,3 @@ cmd2.Cmd
The symbol name which :ref:`features/scripting:Python Scripts` run
using the :ref:`features/builtin_commands:run_pyscript` command can use
to reference the parent ``cmd2`` application.
-
-.. autoclass:: cmd2.CompletionMode
-
- .. attribute:: NONE
-
- Tab completion will be disabled during read_input() call. Use of custom
- up-arrow history supported.
-
- .. attribute:: COMMANDS
-
- read_input() will tab complete cmd2 commands and their arguments.
- cmd2's command line history will be used for up arrow if history is not
- provided. Otherwise use of custom up-arrow history supported.
-
- .. attribute:: CUSTOM
-
- read_input() will tab complete based on one of its following parameters
- (choices, choices_provider, completer, parser). Use of custom up-arrow
- history supported
-
-.. autoclass:: cmd2.cmd2.CustomCompletionSettings
-
- .. automethod:: __init__ \ No newline at end of file
diff --git a/docs/api/utils.rst b/docs/api/utils.rst
index 188f5b16..9276587f 100644
--- a/docs/api/utils.rst
+++ b/docs/api/utils.rst
@@ -36,6 +36,33 @@ IO Handling
:members:
+Tab Completion
+--------------
+
+.. autoclass:: cmd2.utils.CompletionMode
+
+ .. attribute:: NONE
+
+ Tab completion will be disabled during read_input() call. Use of custom
+ up-arrow history supported.
+
+ .. attribute:: COMMANDS
+
+ read_input() will tab complete cmd2 commands and their arguments.
+ cmd2's command line history will be used for up arrow if history is not
+ provided. Otherwise use of custom up-arrow history supported.
+
+ .. attribute:: CUSTOM
+
+ read_input() will tab complete based on one of its following parameters
+ (choices, choices_provider, completer, parser). Use of custom up-arrow
+ history supported
+
+.. autoclass:: cmd2.utils.CustomCompletionSettings
+
+ .. automethod:: __init__
+
+
Text Alignment
--------------