diff options
author | Victor Stinner <vstinner@python.org> | 2024-09-06 11:15:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-06 11:15:00 (GMT) |
commit | 8311b11800509c975023e062e2c336f417c5e4c0 (patch) | |
tree | 043fe248bcbf084b30276f8b42754cb479e1e3ed /Misc/NEWS.d/next | |
parent | d683f49a7b0635a26150cfbb398a3d93b227a74e (diff) | |
download | cpython-8311b11800509c975023e062e2c336f417c5e4c0.zip cpython-8311b11800509c975023e062e2c336f417c5e4c0.tar.gz cpython-8311b11800509c975023e062e2c336f417c5e4c0.tar.bz2 |
gh-119034, REPL: Change page up/down keys to search in history (#123607)
Change <page up> and <page down> keys of the Python REPL to history
search forward/backward.
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Core_and_Builtins/2024-09-02-17-32-15.gh-issue-119034.HYh5Vj.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2024-09-02-17-32-15.gh-issue-119034.HYh5Vj.rst b/Misc/NEWS.d/next/Core_and_Builtins/2024-09-02-17-32-15.gh-issue-119034.HYh5Vj.rst new file mode 100644 index 0000000..f528691 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2024-09-02-17-32-15.gh-issue-119034.HYh5Vj.rst @@ -0,0 +1,2 @@ +Change ``<page up>`` and ``<page down>`` keys of the Python REPL to history +search forward/backward. Patch by Victor Stinner. |