@@ -322,32 +322,32 @@ class KeyBinding(TypedDict):
322322 },
323323 'BEGINNING_OF_LINE' : {
324324 'keys' : ['ctrl a' , 'home' ],
325- 'help_text' : 'Jump to the beginning of line' ,
325+ 'help_text' : 'Start of line' ,
326326 'key_category' : 'editor_navigation' ,
327327 },
328328 'END_OF_LINE' : {
329329 'keys' : ['ctrl e' , 'end' ],
330- 'help_text' : 'Jump to the end of line' ,
330+ 'help_text' : 'End of line' ,
331331 'key_category' : 'editor_navigation' ,
332332 },
333333 'ONE_WORD_BACKWARD' : {
334334 'keys' : ['meta b' , 'shift left' ],
335- 'help_text' : 'Jump backward one word' ,
335+ 'help_text' : 'Start of current or previous word' ,
336336 'key_category' : 'editor_navigation' ,
337337 },
338338 'ONE_WORD_FORWARD' : {
339339 'keys' : ['meta f' , 'shift right' ],
340- 'help_text' : 'Jump forward one word' ,
340+ 'help_text' : 'Start of next word' ,
341341 'key_category' : 'editor_navigation' ,
342342 },
343343 'PREV_LINE' : {
344344 'keys' : ['up' , 'ctrl p' ],
345- 'help_text' : 'Jump to the previous line' ,
345+ 'help_text' : 'Previous line' ,
346346 'key_category' : 'editor_navigation' ,
347347 },
348348 'NEXT_LINE' : {
349349 'keys' : ['down' , 'ctrl n' ],
350- 'help_text' : 'Jump to the next line' ,
350+ 'help_text' : 'Next line' ,
351351 'key_category' : 'editor_navigation' ,
352352 },
353353 'UNDO_LAST_ACTION' : {
@@ -392,12 +392,12 @@ class KeyBinding(TypedDict):
392392 },
393393 'DELETE_LAST_CHARACTER' : {
394394 'keys' : ['ctrl h' ],
395- 'help_text' : 'Delete previous character (to left) ' ,
395+ 'help_text' : 'Delete character behind cursor ' ,
396396 'key_category' : 'editor_text_manipulation' ,
397397 },
398398 'TRANSPOSE_CHARACTERS' : {
399399 'keys' : ['ctrl t' ],
400- 'help_text' : 'Transpose characters ' ,
400+ 'help_text' : 'Swap with previous character ' ,
401401 'key_category' : 'editor_text_manipulation' ,
402402 },
403403 'FULL_RENDERED_MESSAGE' : {
0 commit comments