@@ -332,22 +332,22 @@ class KeyBinding(TypedDict):
332332 },
333333 'BEGINNING_OF_LINE' : {
334334 'keys' : ['ctrl a' , 'home' ],
335- 'help_text' : 'Jump to the beginning of line' ,
335+ 'help_text' : 'Jump to the beginning of the current line' ,
336336 'key_category' : 'editor_navigation' ,
337337 },
338338 'END_OF_LINE' : {
339339 'keys' : ['ctrl e' , 'end' ],
340- 'help_text' : 'Jump to the end of line' ,
340+ 'help_text' : 'Jump to the end of the current line' ,
341341 'key_category' : 'editor_navigation' ,
342342 },
343343 'ONE_WORD_BACKWARD' : {
344344 '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' ,
346346 'key_category' : 'editor_navigation' ,
347347 },
348348 'ONE_WORD_FORWARD' : {
349349 'keys' : ['meta f' , 'shift right' ],
350- 'help_text' : 'Jump forward one word' ,
350+ 'help_text' : 'Jump forward to the start of next word' ,
351351 'key_category' : 'editor_navigation' ,
352352 },
353353 'PREV_LINE' : {
@@ -402,12 +402,12 @@ class KeyBinding(TypedDict):
402402 },
403403 'DELETE_LAST_CHARACTER' : {
404404 'keys' : ['ctrl h' ],
405- 'help_text' : 'Delete previous character (to left) ' ,
405+ 'help_text' : 'Delete the character behind the cursor ' ,
406406 'key_category' : 'editor_text_manipulation' ,
407407 },
408408 'TRANSPOSE_CHARACTERS' : {
409409 'keys' : ['ctrl t' ],
410- 'help_text' : 'Transpose characters ' ,
410+ 'help_text' : 'Swap with previous character ' ,
411411 'key_category' : 'editor_text_manipulation' ,
412412 },
413413}
0 commit comments