summaryrefslogtreecommitdiff
path: root/cmd2/argparse_completer.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-07-17 20:41:21 -0400
committerGitHub <noreply@github.com>2019-07-17 20:41:21 -0400
commit462cdbe59dc8410b68e413cb6b5902623f16c805 (patch)
tree677108fc33446585f5e9618b6e9d4f8ce010cd56 /cmd2/argparse_completer.py
parentb8ab415b9f79a2fd85de182d208a10605d19fac3 (diff)
parentd9728550f0996dc5900a48f5948c1950143e0801 (diff)
downloadcmd2-git-462cdbe59dc8410b68e413cb6b5902623f16c805.tar.gz
Merge pull request #729 from python-cmd2/multi-completion
Enabled tab completion of multiline commands
Diffstat (limited to 'cmd2/argparse_completer.py')
-rw-r--r--cmd2/argparse_completer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/argparse_completer.py b/cmd2/argparse_completer.py
index c824bf97..a741882c 100644
--- a/cmd2/argparse_completer.py
+++ b/cmd2/argparse_completer.py
@@ -414,7 +414,7 @@ class AutoCompleter(object):
"""
Supports cmd2's help command in the completion of sub-command names
:param tokens: command line tokens
- :param text: the string prefix we are attempting to match (all returned matches must begin with it)
+ :param text: the string prefix we are attempting to match (all matches must begin with it)
:param line: the current input line with leading whitespace removed
:param begidx: the beginning index of the prefix text
:param endidx: the ending index of the prefix text