Skip to content

Commit cb40a6a

Browse files
committed
keys: Add SHOW_POLL_VOTES hotkey.
SHOW_POLL_VOTES : 'v' to check votes for a given poll.
1 parent 2421947 commit cb40a6a

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

docs/hotkeys.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
|Toggle star status of the current message|<kbd>Ctrl</kbd> + <kbd>s</kbd> / <kbd>*</kbd>|
6363
|Show/hide message information|<kbd>i</kbd>|
6464
|Show/hide message sender information|<kbd>u</kbd>|
65+
|Show/hide poll voter list|<kbd>v</kbd>|
6566

6667
## Stream list actions
6768
|Command|Key Combination|

zulipterminal/config/keys.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,11 @@ class KeyBinding(TypedDict):
300300
'help_text': 'Show/hide message sender information',
301301
'key_category': 'msg_actions',
302302
},
303+
'SHOW_POLL_VOTES': {
304+
'keys': ['v'],
305+
'help_text': 'Show/hide poll voter list',
306+
'key_category': 'msg_actions',
307+
},
303308
'EDIT_HISTORY': {
304309
'keys': ['e'],
305310
'help_text': 'Show/hide edit history',

0 commit comments

Comments
 (0)