@@ -325,22 +325,22 @@ class KeyBinding(TypedDict):
325325 'key_category' : 'general' ,
326326 },
327327 'BEGINNING_OF_LINE' + READLINE_SUFFIX : {
328- 'keys' : ['ctrl a' ],
328+ 'keys' : ['ctrl a' , 'home' ],
329329 'help_text' : 'Jump to the beginning of line' ,
330330 'key_category' : 'editor_navigation' ,
331331 },
332332 'END_OF_LINE' + READLINE_SUFFIX : {
333- 'keys' : ['ctrl e' ],
333+ 'keys' : ['ctrl e' , 'end' ],
334334 'help_text' : 'Jump to the end of line' ,
335335 'key_category' : 'editor_navigation' ,
336336 },
337337 'ONE_WORD_BACKWARD' + READLINE_SUFFIX : {
338- 'keys' : ['meta b' ],
338+ 'keys' : ['meta b' , 'shift left' ],
339339 'help_text' : 'Jump backward one word' ,
340340 'key_category' : 'editor_navigation' ,
341341 },
342342 'ONE_WORD_FORWARD' + READLINE_SUFFIX : {
343- 'keys' : ['meta f' ],
343+ 'keys' : ['meta f' , 'shift right' ],
344344 'help_text' : 'Jump forward one word' ,
345345 'key_category' : 'editor_navigation' ,
346346 },
@@ -380,7 +380,7 @@ class KeyBinding(TypedDict):
380380 'key_category' : 'editor_text_manipulation' ,
381381 },
382382 'CUT_TO_START_OF_WORD' + READLINE_SUFFIX : {
383- 'keys' : ['ctrl w' ],
383+ 'keys' : ['ctrl w' , 'meta backspace' ],
384384 'help_text' : 'Cut backwards to the start of the current word' ,
385385 'key_category' : 'editor_text_manipulation' ,
386386 },
0 commit comments