File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -204,6 +204,11 @@ source ~/.zshenv
204
204
| Show/hide stream information & modify settings | <kbd >i</kbd > |
205
205
| Show/hide stream members (from stream information) | <kbd >m</kbd > |
206
206
207
+ ### Topic list actions
208
+ | Command | Key Combination |
209
+ | ------------------------------------------------------ | --------------------------------------------- |
210
+ | Mute/unmute Topics | <kbd >M</kbd > |
211
+
207
212
### Composing a message
208
213
| Command | Key Combination |
209
214
| ----------------------------------------------------- | --------------------------------------------- |
Original file line number Diff line number Diff line change @@ -209,6 +209,11 @@ class KeyBinding(TypedDict, total=False):
209
209
'help_text' : 'Mute/unmute Streams' ,
210
210
'key_category' : 'stream_list' ,
211
211
}),
212
+ ('TOGGLE_MUTE_TOPIC' , {
213
+ 'keys' : ['M' ],
214
+ 'help_text' : 'Mute/unmute Topics' ,
215
+ 'key_category' : 'topic_list' ,
216
+ }),
212
217
('ENTER' , {
213
218
'keys' : ['enter' ],
214
219
'help_text' : 'Perform current action' ,
@@ -320,6 +325,7 @@ class KeyBinding(TypedDict, total=False):
320
325
('searching' , 'Searching' ),
321
326
('msg_actions' , 'Actions for the selected message' ),
322
327
('stream_list' , 'Stream list actions' ),
328
+ ('topic_list' , 'Topic list actions' ),
323
329
('msg_compose' , 'Composing a Message' ),
324
330
])
325
331
You can’t perform that action at this time.
0 commit comments