diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-04-23 17:34:04 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-04-23 17:34:04 -0400 |
commit | 6deb39d75f785e40daaa14ef033bf5797f42944f (patch) | |
tree | ba1d1995f2f8b312e431e63062562fc339009339 /examples | |
parent | 5fd8e00010e068eb0632b6cb20860a18774181a5 (diff) | |
download | cmd2-git-6deb39d75f785e40daaa14ef033bf5797f42944f.tar.gz |
Updated tab completion documentation
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/basic_completion.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/basic_completion.py b/examples/basic_completion.py index 9523ac67..f33029c9 100755 --- a/examples/basic_completion.py +++ b/examples/basic_completion.py @@ -4,7 +4,7 @@ A simple example demonstrating how to enable tab completion by assigning a completer function to do_* commands. This also demonstrates capabilities of the following completer features included with cmd2: - CompletionError exceptions -- delimiter_completer() +- delimiter_complete() - flag_based_complete() (see note below) - index_based_complete() (see note below) |