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 457e5e6 commit e0d6b53Copy full SHA for e0d6b53
Lib/_pyrepl/reader.py
@@ -143,8 +143,8 @@ def make_default_commands() -> dict[CommandName, type[Command]]:
143
+ [(c, "self-insert") for c in map(chr, range(32, 127)) if c != "\\"]
144
+ [(c, "self-insert") for c in map(chr, range(128, 256)) if c.isalpha()]
145
+ [
146
- (r"\<up>", "up"),
147
- (r"\<down>", "down"),
+ (r"\<up>", "history-search-backward"),
+ (r"\<down>", "history-search-forward"),
148
(r"\<left>", "left"),
149
(r"\C-\<left>", "backward-word"),
150
(r"\<right>", "right"),
0 commit comments