@@ -322,32 +322,32 @@ class KeyBinding(TypedDict):
322
322
},
323
323
'BEGINNING_OF_LINE' : {
324
324
'keys' : ['ctrl a' , 'home' ],
325
- 'help_text' : 'Jump to the beginning of line' ,
325
+ 'help_text' : 'Start of line' ,
326
326
'key_category' : 'editor_navigation' ,
327
327
},
328
328
'END_OF_LINE' : {
329
329
'keys' : ['ctrl e' , 'end' ],
330
- 'help_text' : 'Jump to the end of line' ,
330
+ 'help_text' : 'End of line' ,
331
331
'key_category' : 'editor_navigation' ,
332
332
},
333
333
'ONE_WORD_BACKWARD' : {
334
334
'keys' : ['meta b' , 'shift left' ],
335
- 'help_text' : 'Jump backward one word' ,
335
+ 'help_text' : 'Start of current or previous word' ,
336
336
'key_category' : 'editor_navigation' ,
337
337
},
338
338
'ONE_WORD_FORWARD' : {
339
339
'keys' : ['meta f' , 'shift right' ],
340
- 'help_text' : 'Jump forward one word' ,
340
+ 'help_text' : 'Start of next word' ,
341
341
'key_category' : 'editor_navigation' ,
342
342
},
343
343
'PREV_LINE' : {
344
344
'keys' : ['up' , 'ctrl p' ],
345
- 'help_text' : 'Jump to the previous line' ,
345
+ 'help_text' : 'Previous line' ,
346
346
'key_category' : 'editor_navigation' ,
347
347
},
348
348
'NEXT_LINE' : {
349
349
'keys' : ['down' , 'ctrl n' ],
350
- 'help_text' : 'Jump to the next line' ,
350
+ 'help_text' : 'Next line' ,
351
351
'key_category' : 'editor_navigation' ,
352
352
},
353
353
'UNDO_LAST_ACTION' : {
@@ -392,12 +392,12 @@ class KeyBinding(TypedDict):
392
392
},
393
393
'DELETE_LAST_CHARACTER' : {
394
394
'keys' : ['ctrl h' ],
395
- 'help_text' : 'Delete previous character (to left) ' ,
395
+ 'help_text' : 'Delete character behind cursor ' ,
396
396
'key_category' : 'editor_text_manipulation' ,
397
397
},
398
398
'TRANSPOSE_CHARACTERS' : {
399
399
'keys' : ['ctrl t' ],
400
- 'help_text' : 'Transpose characters ' ,
400
+ 'help_text' : 'Swap with previous character ' ,
401
401
'key_category' : 'editor_text_manipulation' ,
402
402
},
403
403
'FULL_RENDERED_MESSAGE' : {
0 commit comments