@@ -332,22 +332,22 @@ class KeyBinding(TypedDict):
332
332
},
333
333
'BEGINNING_OF_LINE' : {
334
334
'keys' : ['ctrl a' , 'home' ],
335
- 'help_text' : 'Jump to the beginning of line' ,
335
+ 'help_text' : 'Jump to the beginning of the current line' ,
336
336
'key_category' : 'editor_navigation' ,
337
337
},
338
338
'END_OF_LINE' : {
339
339
'keys' : ['ctrl e' , 'end' ],
340
- 'help_text' : 'Jump to the end of line' ,
340
+ 'help_text' : 'Jump to the end of the current line' ,
341
341
'key_category' : 'editor_navigation' ,
342
342
},
343
343
'ONE_WORD_BACKWARD' : {
344
344
'keys' : ['meta b' , 'shift left' ],
345
- 'help_text' : 'Jump backward one word' ,
345
+ 'help_text' : 'Jump backward to the start of current or previous word' ,
346
346
'key_category' : 'editor_navigation' ,
347
347
},
348
348
'ONE_WORD_FORWARD' : {
349
349
'keys' : ['meta f' , 'shift right' ],
350
- 'help_text' : 'Jump forward one word' ,
350
+ 'help_text' : 'Jump forward to the start of next word' ,
351
351
'key_category' : 'editor_navigation' ,
352
352
},
353
353
'PREV_LINE' : {
@@ -402,12 +402,12 @@ class KeyBinding(TypedDict):
402
402
},
403
403
'DELETE_LAST_CHARACTER' : {
404
404
'keys' : ['ctrl h' ],
405
- 'help_text' : 'Delete previous character (to left) ' ,
405
+ 'help_text' : 'Delete the character behind the cursor ' ,
406
406
'key_category' : 'editor_text_manipulation' ,
407
407
},
408
408
'TRANSPOSE_CHARACTERS' : {
409
409
'keys' : ['ctrl t' ],
410
- 'help_text' : 'Transpose characters ' ,
410
+ 'help_text' : 'Swap with previous character ' ,
411
411
'key_category' : 'editor_text_manipulation' ,
412
412
},
413
413
}
0 commit comments