Skip to content

Commit 0262f36

Browse files
style(keymaps): more clear comment on home and end
1 parent 1582e6d commit 0262f36

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pyrepl/keymaps.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,10 @@
7676
(r"\<end>", "end"),
7777
(r"\<home>", "home"),
7878
(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
79+
# the entries in the terminfo database for xterms seem to be wrong.
80+
# this is a less than ideal workaround
81+
(r"\EOF", "end"),
82+
(r"\EOH", "home"),
8183
]
8284
)
8385

0 commit comments

Comments
 (0)