Skip to content

Commit b95153e

Browse files
committed
keys: Add TOPIC_INFO shortcut using 'i' key to show/hide topic settings.
Hotkeys updated.
1 parent 1bd084f commit b95153e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

docs/hotkeys.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
|Redraw screen|<kbd>ctrl</kbd> + <kbd>l</kbd>|
1414
|Quit|<kbd>ctrl</kbd> + <kbd>c</kbd>|
1515
|View user information (From Users list)|<kbd>i</kbd>|
16+
|Show/hide topic information & modify settings|<kbd>i</kbd>|
1617

1718
## Navigation
1819
|Command|Key Combination|

zulipterminal/config/keys.py

+5
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,11 @@ class KeyBinding(TypedDict):
311311
'help_text': 'View user information (From Users list)',
312312
'key_category': 'general',
313313
}),
314+
('TOPIC_INFO', {
315+
'keys': ['i'],
316+
'help_text': 'Show/hide topic information & modify settings',
317+
'key_category': 'general',
318+
}),
314319
('BEGINNING_OF_LINE', {
315320
'keys': ['ctrl a'],
316321
'help_text': 'Jump to the beginning of line',

0 commit comments

Comments
 (0)