Skip to content

Commit

Permalink
style(keymaps): more clear comment on home and end
Browse files Browse the repository at this point in the history
  • Loading branch information
rachmadaniHaryono committed Jul 27, 2022
1 parent 1582e6d commit 0262f36
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyrepl/keymaps.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,10 @@
(r"\<end>", "end"),
(r"\<home>", "home"),
(r"\<f1>", "help"),
(r"\EOF", "end"), # the entries in the terminfo database for xterms
(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
(r"\EOF", "end"),
(r"\EOH", "home"),
]
)

Expand Down

0 comments on commit 0262f36

Please sign in to comment.