We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1582e6d commit 0262f36Copy full SHA for 0262f36
pyrepl/keymaps.py
@@ -76,8 +76,10 @@
76
(r"\<end>", "end"),
77
(r"\<home>", "home"),
78
(r"\<f1>", "help"),
79
- (r"\EOF", "end"), # the entries in the terminfo database for xterms
80
- (r"\EOH", "home"), # seem to be wrong. this is a less than ideal workaround
+ # the entries in the terminfo database for xterms seem to be wrong.
+ # this is a less than ideal workaround
81
+ (r"\EOF", "end"),
82
+ (r"\EOH", "home"),
83
]
84
)
85
0 commit comments