diff options
author | Miro HronĨok <miro@hroncok.cz> | 2024-09-13 01:07:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-13 01:07:23 (GMT) |
commit | f4e5643df64d0c2a009ed224560044b3409a47c0 (patch) | |
tree | 7d93abdf715a9a5213ea0b9f6542f5707c5edd9c /Misc | |
parent | 6e06e01881dcffbeef5baac0c112ffb14cfa0b27 (diff) | |
download | cpython-f4e5643df64d0c2a009ed224560044b3409a47c0.zip cpython-f4e5643df64d0c2a009ed224560044b3409a47c0.tar.gz cpython-f4e5643df64d0c2a009ed224560044b3409a47c0.tar.bz2 |
gh-124027: Support Del, PgUp, and PgDn on TERM=vt100 (#124028)
pyrepl: Support Del, PgUp, and PgDn on TERM=vt100
From Fedora's /etc/inputrc:
"\e[5~": history-search-backward
"\e[6~": history-search-forward
"\e[3~": delete-char
Fixes https://github.com/python/cpython/issues/124027
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core_and_Builtins/2024-09-13-02-25-06.gh-issue-124027.to_9DY.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2024-09-13-02-25-06.gh-issue-124027.to_9DY.rst b/Misc/NEWS.d/next/Core_and_Builtins/2024-09-13-02-25-06.gh-issue-124027.to_9DY.rst new file mode 100644 index 0000000..1834ba0 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2024-09-13-02-25-06.gh-issue-124027.to_9DY.rst @@ -0,0 +1,2 @@ +Support ``<page up>``, ``<page down>``, and ``<delete>`` keys in the Python +REPL when ``$TERM`` is set to ``vt100``. |