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 aa4f3ac commit 8e5d9efCopy full SHA for 8e5d9ef
pyrepl/reader.py
@@ -152,8 +152,8 @@ def make_default_syntax_table():
152
(r'\<delete>', 'delete'),
153
(r'\<backspace>', 'backspace'),
154
(r'\M-\<backspace>', 'backward-kill-word'),
155
- (r'\<end>', 'end'),
156
- (r'\<home>', 'home'),
+ (r'\<end>', 'end-of-line'), # was 'end'
+ (r'\<home>', 'beginning-of-line'), # was 'home'
157
(r'\<f1>', 'help'),
158
(r'\EOF', 'end'), # the entries in the terminfo database for xterms
159
(r'\EOH', 'home'), # seem to be wrong. this is a less than ideal
0 commit comments