File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 73
73
| Toggle topics in a stream| <kbd >t</kbd >|
74
74
| Mute/unmute streams| <kbd >m</kbd >|
75
75
| Show/hide stream information & modify settings| <kbd >i</kbd >|
76
- | Show/hide stream members (from stream information)| <kbd >m</kbd >|
77
- | Copy stream email to clipboard (from stream information)| <kbd >c</kbd >|
78
76
79
77
## Begin composing a message
80
78
| Command| Key Combination|
123
121
| Delete previous character| <kbd >Ctrl</kbd > + <kbd >h</kbd >|
124
122
| Swap with previous character| <kbd >Ctrl</kbd > + <kbd >t</kbd >|
125
123
124
+ ## Stream information (press i to view info of a stream)
125
+ | Command| Key Combination|
126
+ | :--- | :---: |
127
+ | Show/hide stream members| <kbd >m</kbd >|
128
+ | Copy stream email to clipboard| <kbd >c</kbd >|
129
+
Original file line number Diff line number Diff line change @@ -314,16 +314,16 @@ class KeyBinding(TypedDict):
314
314
},
315
315
'STREAM_MEMBERS' : {
316
316
'keys' : ['m' ],
317
- 'help_text' : 'Show/hide stream members (from stream information) ' ,
317
+ 'help_text' : 'Show/hide stream members' ,
318
318
'excluded_from_random_tips' : True ,
319
- 'key_category' : 'stream_list ' ,
319
+ 'key_category' : 'stream_info ' ,
320
320
},
321
321
'COPY_STREAM_EMAIL' : {
322
322
'keys' : ['c' ],
323
323
'help_text' :
324
- 'Copy stream email to clipboard (from stream information) ' ,
324
+ 'Copy stream email to clipboard' ,
325
325
'excluded_from_random_tips' : True ,
326
- 'key_category' : 'stream_list ' ,
326
+ 'key_category' : 'stream_info ' ,
327
327
},
328
328
'REDRAW' : {
329
329
'keys' : ['ctrl l' ],
@@ -462,6 +462,10 @@ class KeyBinding(TypedDict):
462
462
"compose_box" : "Writing a message" ,
463
463
"editor_navigation" : "Editor: Navigation" ,
464
464
"editor_text_manipulation" : "Editor: Text Manipulation" ,
465
+ "stream_info" : (
466
+ f"Stream information (press { KEY_BINDINGS ['STREAM_INFO' ]['keys' ][0 ]} "
467
+ f" to view info of a stream)"
468
+ ),
465
469
}
466
470
467
471
ZT_TO_URWID_CMD_MAPPING = {
You can’t perform that action at this time.
0 commit comments