Skip to content

Commit 0a11a56

Browse files
Niloth-pneiljp
authored andcommitted
keys/ui: Add hotkey and command to generate new random footer hint.
Added tests. Hotkeys document regenerated.
1 parent d46b6d8 commit 0a11a56

File tree

4 files changed

+26
-0
lines changed

4 files changed

+26
-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
|Show/hide user information (from users list)|<kbd>i</kbd>|
16+
|New footer hotkey hint|<kbd>Tab</kbd>|
1617

1718
## Navigation
1819
|Command|Key Combination|

tests/ui/test_ui.py

+17
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,23 @@ def test_keypress_STREAM_MESSAGE(
341341
assert returned_key == key
342342
assert view.body.focus_col == 1
343343

344+
@pytest.mark.parametrize("key", keys_for_command("NEW_HINT"))
345+
def test_keypress_NEW_HINT(
346+
self,
347+
view: View,
348+
mocker: MockerFixture,
349+
key: str,
350+
widget_size: Callable[[Widget], urwid_Box],
351+
) -> None:
352+
size = widget_size(view)
353+
set_footer_text = mocker.patch(VIEW + ".set_footer_text")
354+
mocker.patch(CONTROLLER + ".is_in_editor_mode", return_value=False)
355+
356+
returned_key = view.keypress(size, key)
357+
358+
set_footer_text.assert_called_once_with()
359+
assert returned_key == key
360+
344361
@pytest.mark.parametrize("key", keys_for_command("SEARCH_PEOPLE"))
345362
@pytest.mark.parametrize("autohide", [True, False], ids=["autohide", "no_autohide"])
346363
def test_keypress_autohide_users(

zulipterminal/config/keys.py

+5
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,11 @@ class KeyBinding(TypedDict):
438438
'help_text': 'Show/hide full raw message (from message information)',
439439
'key_category': 'msg_actions',
440440
},
441+
'NEW_HINT': {
442+
'keys': ['tab'],
443+
'help_text': 'New footer hotkey hint',
444+
'key_category': 'general',
445+
},
441446
}
442447
# fmt: on
443448

zulipterminal/ui.py

+3
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,9 @@ def keypress(self, size: urwid_Box, key: str) -> Optional[str]:
328328
elif is_command_key("MARKDOWN_HELP", key):
329329
self.controller.show_markdown_help()
330330
return key
331+
elif is_command_key("NEW_HINT", key):
332+
self.set_footer_text()
333+
return key
331334
return super().keypress(size, key)
332335

333336
def mouse_event(

0 commit comments

Comments
 (0)