diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-06-16 12:22:47 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-06-16 12:22:47 -0400 |
commit | eb32a860d442f6990971bf9ab96db576c939587c (patch) | |
tree | c967b60b9bc02efee710a1cb391ae30bac69d7c4 | |
parent | cb23c60fafa525066a4aeed60283a8a794e48ae7 (diff) | |
download | cmd2-git-eb32a860d442f6990971bf9ab96db576c939587c.tar.gz |
Updated CHANGELOG to reflect the recent changes
-rw-r--r-- | CHANGELOG.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 86a8f51a..300dc732 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,12 @@ * Fixed issue where piping and redirecting did not work correctly with paths that had spaces * Enhancements * Added ability to print a header above tab-completion suggestions using `completion_header` member - * **pager** is now a settable parameter which controls pager command used by ``cmd2.Cmd.ppaged`` method - * **pager** looks for *PAGER* environment variable if present or uses sane defaults if not + * Added ``pager`` and ``pager_chop`` attributes to the ``cmd2.Cmd`` class + * ``pager`` looks for *PAGER* environment variable if present or uses sane defaults if not + * ``pager_chop`` appends a **-S** flag if ``pager`` starts with **less** + * Added ``chop`` argument to ``cmd2.Cmd.ppaged()`` method for displaying output using a pager + * If ``chop`` is ``False``, then ``self.pager`` is used as the pager + * Otherwise ``self.pager_chop`` is used as the pager ## 0.8.8 (TBD, 2018) * Bug Fixes |