@@ -296,16 +296,16 @@ class KeyBinding(TypedDict):
296
296
},
297
297
'EDIT_HISTORY' : {
298
298
'keys' : ['e' ],
299
- 'help_text' : 'Show/hide edit history (from message information) ' ,
299
+ 'help_text' : 'Show/hide edit history' ,
300
300
'excluded_from_random_tips' : True ,
301
- 'key_category' : 'msg_actions ' ,
301
+ 'key_category' : 'msg_info ' ,
302
302
},
303
303
'VIEW_IN_BROWSER' : {
304
304
'keys' : ['v' ],
305
305
'help_text' :
306
- 'View current message in browser (from message information) ' ,
306
+ 'View current message in browser' ,
307
307
'excluded_from_random_tips' : True ,
308
- 'key_category' : 'msg_actions ' ,
308
+ 'key_category' : 'msg_info ' ,
309
309
},
310
310
'STREAM_INFO' : {
311
311
'keys' : ['i' ],
@@ -435,13 +435,13 @@ class KeyBinding(TypedDict):
435
435
},
436
436
'FULL_RENDERED_MESSAGE' : {
437
437
'keys' : ['f' ],
438
- 'help_text' : 'Show/hide full rendered message (from message information) ' ,
439
- 'key_category' : 'msg_actions ' ,
438
+ 'help_text' : 'Show/hide full rendered message' ,
439
+ 'key_category' : 'msg_info ' ,
440
440
},
441
441
'FULL_RAW_MESSAGE' : {
442
442
'keys' : ['r' ],
443
- 'help_text' : 'Show/hide full raw message (from message information) ' ,
444
- 'key_category' : 'msg_actions ' ,
443
+ 'help_text' : 'Show/hide full raw message' ,
444
+ 'key_category' : 'msg_info ' ,
445
445
},
446
446
'NEW_HINT' : {
447
447
'keys' : ['tab' ],
@@ -466,6 +466,10 @@ class KeyBinding(TypedDict):
466
466
f"Stream information (press { KEY_BINDINGS ['STREAM_INFO' ]['keys' ][0 ]} "
467
467
f" to view info of a stream)"
468
468
),
469
+ "msg_info" : (
470
+ f"Message information (press { KEY_BINDINGS ['MSG_INFO' ]['keys' ][0 ]} "
471
+ f" to view info of a message)"
472
+ ),
469
473
}
470
474
471
475
ZT_TO_URWID_CMD_MAPPING = {
0 commit comments