@@ -55,7 +55,7 @@ class KeyBinding(TypedDict):
55
55
'OPEN_DRAFT' : {
56
56
'keys' : ['d' ],
57
57
'help_text' : 'Open draft message saved in this session' ,
58
- 'key_category' : 'general ' ,
58
+ 'key_category' : 'new_msg ' ,
59
59
},
60
60
'COPY_ABOUT_INFO' : {
61
61
'keys' : ['c' ],
@@ -105,22 +105,22 @@ class KeyBinding(TypedDict):
105
105
'REPLY_MESSAGE' : {
106
106
'keys' : ['r' , 'enter' ],
107
107
'help_text' : 'Reply to the current message' ,
108
- 'key_category' : 'msg_actions ' ,
108
+ 'key_category' : 'reply ' ,
109
109
},
110
110
'MENTION_REPLY' : {
111
111
'keys' : ['@' ],
112
112
'help_text' : 'Reply mentioning the sender of the current message' ,
113
- 'key_category' : 'msg_actions ' ,
113
+ 'key_category' : 'reply ' ,
114
114
},
115
115
'QUOTE_REPLY' : {
116
116
'keys' : ['>' ],
117
117
'help_text' : 'Reply quoting the current message text' ,
118
- 'key_category' : 'msg_actions ' ,
118
+ 'key_category' : 'reply ' ,
119
119
},
120
120
'REPLY_AUTHOR' : {
121
121
'keys' : ['R' ],
122
122
'help_text' : 'Reply directly to the sender of the current message' ,
123
- 'key_category' : 'msg_actions ' ,
123
+ 'key_category' : 'reply ' ,
124
124
},
125
125
'EDIT_MESSAGE' : {
126
126
'keys' : ['e' ],
@@ -130,12 +130,12 @@ class KeyBinding(TypedDict):
130
130
'STREAM_MESSAGE' : {
131
131
'keys' : ['c' ],
132
132
'help_text' : 'New message to a stream' ,
133
- 'key_category' : 'msg_actions ' ,
133
+ 'key_category' : 'new_msg ' ,
134
134
},
135
135
'PRIVATE_MESSAGE' : {
136
136
'keys' : ['x' ],
137
137
'help_text' : 'New message to a person or group of people' ,
138
- 'key_category' : 'msg_actions ' ,
138
+ 'key_category' : 'new_msg ' ,
139
139
},
140
140
'CYCLE_COMPOSE_FOCUS' : {
141
141
'keys' : ['tab' ],
@@ -438,6 +438,8 @@ class KeyBinding(TypedDict):
438
438
"searching" : "Searching" ,
439
439
"msg_actions" : "Message actions" ,
440
440
"stream_list" : "Stream list actions" ,
441
+ "new_msg" : "Compose: New Message" ,
442
+ "reply" : "Compose: Replies" ,
441
443
"msg_compose" : "Composing a Message" ,
442
444
"editor_navigation" : "Editor: Navigation" ,
443
445
"editor_text_manipulation" : "Editor: Text Manipulation" ,
0 commit comments