@@ -287,6 +287,16 @@ class KeyBinding(TypedDict):
287
287
'excluded_from_random_tips' : True ,
288
288
'key_category' : 'msg_actions' ,
289
289
},
290
+ 'FULL_RENDERED_MESSAGE' : {
291
+ 'keys' : ['f' ],
292
+ 'help_text' : 'Show/hide full rendered message (from message information)' ,
293
+ 'key_category' : 'msg_actions' ,
294
+ },
295
+ 'FULL_RAW_MESSAGE' : {
296
+ 'keys' : ['r' ],
297
+ 'help_text' : 'Show/hide full raw message (from message information)' ,
298
+ 'key_category' : 'msg_actions' ,
299
+ },
290
300
'STREAM_INFO' : {
291
301
'keys' : ['i' ],
292
302
'help_text' : 'Show/hide stream information & modify settings' ,
@@ -340,14 +350,24 @@ class KeyBinding(TypedDict):
340
350
'help_text' : 'Jump forward one word' ,
341
351
'key_category' : 'editor_navigation' ,
342
352
},
343
- 'DELETE_LAST_CHARACTER' : {
344
- 'keys' : ['ctrl h' ],
345
- 'help_text' : 'Delete previous character (to left)' ,
353
+ 'PREV_LINE' : {
354
+ 'keys' : ['up' , 'ctrl p' ],
355
+ 'help_text' : 'Jump to the previous line' ,
356
+ 'key_category' : 'editor_navigation' ,
357
+ },
358
+ 'NEXT_LINE' : {
359
+ 'keys' : ['down' , 'ctrl n' ],
360
+ 'help_text' : 'Jump to the next line' ,
361
+ 'key_category' : 'editor_navigation' ,
362
+ },
363
+ 'UNDO_LAST_ACTION' : {
364
+ 'keys' : ['ctrl _' ],
365
+ 'help_text' : 'Undo last action' ,
346
366
'key_category' : 'editor_text_manipulation' ,
347
367
},
348
- 'TRANSPOSE_CHARACTERS ' : {
349
- 'keys' : ['ctrl t ' ],
350
- 'help_text' : 'Transpose characters ' ,
368
+ 'CLEAR_MESSAGE ' : {
369
+ 'keys' : ['ctrl l ' ],
370
+ 'help_text' : 'Clear text box ' ,
351
371
'key_category' : 'editor_text_manipulation' ,
352
372
},
353
373
'CUT_TO_END_OF_LINE' : {
@@ -380,36 +400,16 @@ class KeyBinding(TypedDict):
380
400
'help_text' : 'Paste last cut section' ,
381
401
'key_category' : 'editor_text_manipulation' ,
382
402
},
383
- 'UNDO_LAST_ACTION ' : {
384
- 'keys' : ['ctrl _ ' ],
385
- 'help_text' : 'Undo last action ' ,
403
+ 'DELETE_LAST_CHARACTER ' : {
404
+ 'keys' : ['ctrl h ' ],
405
+ 'help_text' : 'Delete previous character (to left) ' ,
386
406
'key_category' : 'editor_text_manipulation' ,
387
407
},
388
- 'PREV_LINE' : {
389
- 'keys' : ['up' , 'ctrl p' ],
390
- 'help_text' : 'Jump to the previous line' ,
391
- 'key_category' : 'editor_navigation' ,
392
- },
393
- 'NEXT_LINE' : {
394
- 'keys' : ['down' , 'ctrl n' ],
395
- 'help_text' : 'Jump to the next line' ,
396
- 'key_category' : 'editor_navigation' ,
397
- },
398
- 'CLEAR_MESSAGE' : {
399
- 'keys' : ['ctrl l' ],
400
- 'help_text' : 'Clear text box' ,
408
+ 'TRANSPOSE_CHARACTERS' : {
409
+ 'keys' : ['ctrl t' ],
410
+ 'help_text' : 'Transpose characters' ,
401
411
'key_category' : 'editor_text_manipulation' ,
402
412
},
403
- 'FULL_RENDERED_MESSAGE' : {
404
- 'keys' : ['f' ],
405
- 'help_text' : 'Show/hide full rendered message (from message information)' ,
406
- 'key_category' : 'msg_actions' ,
407
- },
408
- 'FULL_RAW_MESSAGE' : {
409
- 'keys' : ['r' ],
410
- 'help_text' : 'Show/hide full raw message (from message information)' ,
411
- 'key_category' : 'msg_actions' ,
412
- },
413
413
}
414
414
# fmt: on
415
415
0 commit comments