@@ -325,22 +325,22 @@ class KeyBinding(TypedDict):
325
325
'key_category' : 'general' ,
326
326
},
327
327
'BEGINNING_OF_LINE' + READLINE_SUFFIX : {
328
- 'keys' : ['ctrl a' ],
328
+ 'keys' : ['ctrl a' , 'home' ],
329
329
'help_text' : 'Jump to the beginning of line' ,
330
330
'key_category' : 'editor_navigation' ,
331
331
},
332
332
'END_OF_LINE' + READLINE_SUFFIX : {
333
- 'keys' : ['ctrl e' ],
333
+ 'keys' : ['ctrl e' , 'end' ],
334
334
'help_text' : 'Jump to the end of line' ,
335
335
'key_category' : 'editor_navigation' ,
336
336
},
337
337
'ONE_WORD_BACKWARD' + READLINE_SUFFIX : {
338
- 'keys' : ['meta b' ],
338
+ 'keys' : ['meta b' , 'shift left' ],
339
339
'help_text' : 'Jump backward one word' ,
340
340
'key_category' : 'editor_navigation' ,
341
341
},
342
342
'ONE_WORD_FORWARD' + READLINE_SUFFIX : {
343
- 'keys' : ['meta f' ],
343
+ 'keys' : ['meta f' , 'shift right' ],
344
344
'help_text' : 'Jump forward one word' ,
345
345
'key_category' : 'editor_navigation' ,
346
346
},
@@ -380,7 +380,7 @@ class KeyBinding(TypedDict):
380
380
'key_category' : 'editor_text_manipulation' ,
381
381
},
382
382
'CUT_TO_START_OF_WORD' + READLINE_SUFFIX : {
383
- 'keys' : ['ctrl w' ],
383
+ 'keys' : ['ctrl w' , 'meta backspace' ],
384
384
'help_text' : 'Cut backwards to the start of the current word' ,
385
385
'key_category' : 'editor_text_manipulation' ,
386
386
},
0 commit comments