diff options
author | Cian Bagshaw <cian@cianb.xyz> | 2024-09-25 23:27:23 +0100 |
---|---|---|
committer | Cian Bagshaw <cian@cianb.xyz> | 2024-09-25 23:27:23 +0100 |
commit | 554ae71136359fa1b5c8b26af9a5a99dd748618f (patch) | |
tree | 714fce06f41c631dbf16d120d6ce4df2037dbb0c /.config/python | |
parent | cd16a5154761b3c065de7e0c3a82730ee1a025b6 (diff) | |
download | dotFiles-master.tar.bz2 dotFiles-master.zip |
Buffered line input using GNU Readline is now configured globally.
Also, fixed Python Shell Readline history, so it is available for the current
session, though still not saved after that.
Diffstat (limited to '.config/python')
-rw-r--r-- | .config/python | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/python b/.config/python index e026454..94a4e40 100644 --- a/.config/python +++ b/.config/python | |||
@@ -3,4 +3,4 @@ | |||
3 | 3 | ||
4 | # disable history | 4 | # disable history |
5 | import readline | 5 | import readline |
6 | readline.set_auto_history(False) | 6 | readline.write_history_file = lambda *args: None |