summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2021-09-08 12:20:02 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2021-09-08 12:20:02 -0400
commitdf1fe25cbb8468ca18d5452174ff4a9a7aa33f11 (patch)
treee53a19deff25e626a94ae32ec507b068fb8a08fa
parent4c5bfc087e22da2c804b9afa1658d67829e6ef80 (diff)
downloadcmd2-git-df1fe25cbb8468ca18d5452174ff4a9a7aa33f11.tar.gz
Updated change log
-rw-r--r--CHANGELOG.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dfd6ee05..3c8f9403 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,7 +8,8 @@
methods allow developers to enable custom tab completion behavior for a given parser by using a custom
`ArgparseCompleter`-based class.
* Added `ap_completer_type` keyword arg to `Cmd2ArgumentParser.__init__()` which saves a call
- to `set_ap_completer_type()`. This keyword will also work in `add_parser()` when creating subcommands.
+ to `set_ap_completer_type()`. This keyword will also work with `add_parser()` when creating subcommands
+ if the base command's parser is a `Cmd2ArgumentParser`.
* New function `register_argparse_argument_parameter()` allows developers to specify custom
parameters to be passed to the argparse parser's `add_argument()` method. These parameters will
become accessible in the resulting argparse Action object when modifying `ArgparseCompleter` behavior.