We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92fb23f commit 8dc590bCopy full SHA for 8dc590b
consolekit/__init__.py
@@ -3,6 +3,18 @@
3
# __init__.py
4
"""
5
Additional utilities for `click <https://click.palletsprojects.com/en/7.x/>`_.
6
+
7
+.. attention::
8
9
+ ``consolekit`` disables Python's readline history to prevent unrelated histories appearing for prompts.
10
+ If the original behaviour is desired run:
11
12
+ .. code-block:: python
13
14
+ import readline
15
+ readline.set_history_length(-1)
16
+ readline.set_auto_history(True)
17
18
19
#
20
# Copyright © 2020 Dominic Davis-Foster <[email protected]>
0 commit comments