@@ -54,7 +54,7 @@ class KeyBinding(TypedDict):
54
54
'OPEN_DRAFT' : {
55
55
'keys' : ['d' ],
56
56
'help_text' : 'Open draft message saved in this session' ,
57
- 'key_category' : 'general ' ,
57
+ 'key_category' : 'new_msg ' ,
58
58
},
59
59
'GO_UP' : {
60
60
'keys' : ['up' , 'k' ],
@@ -94,22 +94,22 @@ class KeyBinding(TypedDict):
94
94
'REPLY_MESSAGE' : {
95
95
'keys' : ['r' , 'enter' ],
96
96
'help_text' : 'Reply to the current message' ,
97
- 'key_category' : 'msg_actions ' ,
97
+ 'key_category' : 'reply ' ,
98
98
},
99
99
'MENTION_REPLY' : {
100
100
'keys' : ['@' ],
101
101
'help_text' : 'Reply mentioning the sender of the current message' ,
102
- 'key_category' : 'msg_actions ' ,
102
+ 'key_category' : 'reply ' ,
103
103
},
104
104
'QUOTE_REPLY' : {
105
105
'keys' : ['>' ],
106
106
'help_text' : 'Reply quoting the current message text' ,
107
- 'key_category' : 'msg_actions ' ,
107
+ 'key_category' : 'reply ' ,
108
108
},
109
109
'REPLY_AUTHOR' : {
110
110
'keys' : ['R' ],
111
111
'help_text' : 'Reply directly to the sender of the current message' ,
112
- 'key_category' : 'msg_actions ' ,
112
+ 'key_category' : 'reply ' ,
113
113
},
114
114
'EDIT_MESSAGE' : {
115
115
'keys' : ['e' ],
@@ -119,12 +119,12 @@ class KeyBinding(TypedDict):
119
119
'STREAM_MESSAGE' : {
120
120
'keys' : ['c' ],
121
121
'help_text' : 'New message to a stream' ,
122
- 'key_category' : 'msg_actions ' ,
122
+ 'key_category' : 'new_msg ' ,
123
123
},
124
124
'PRIVATE_MESSAGE' : {
125
125
'keys' : ['x' ],
126
126
'help_text' : 'New message to a person or group of people' ,
127
- 'key_category' : 'msg_actions ' ,
127
+ 'key_category' : 'new_msg ' ,
128
128
},
129
129
'CYCLE_COMPOSE_FOCUS' : {
130
130
'keys' : ['tab' ],
@@ -419,6 +419,8 @@ class KeyBinding(TypedDict):
419
419
"searching" : "Searching" ,
420
420
"msg_actions" : "Message actions" ,
421
421
"stream_list" : "Stream list actions" ,
422
+ "new_msg" : "Compose: New Message" ,
423
+ "reply" : "Compose: Replies" ,
422
424
"msg_compose" : "Composing a Message" ,
423
425
"editor_navigation" : "Editor: Navigation" ,
424
426
"editor_text_manipulation" : "Editor: Text Manipulation" ,
0 commit comments