We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf188a7 commit ede4f88Copy full SHA for ede4f88
zulipterminal/core.py
@@ -645,7 +645,7 @@ def narrow_to_user(
645
) -> None:
646
self._narrow_to(
647
anchor=contextual_message_id,
648
- dm_with=", ".join(recipient_emails),
+ pm_with=", ".join(recipient_emails),
649
)
650
651
def narrow_to_all_messages(
@@ -654,7 +654,7 @@ def narrow_to_all_messages(
654
self._narrow_to(anchor=contextual_message_id)
655
656
def narrow_to_all_dm(self, *, contextual_message_id: Optional[int] = None) -> None:
657
- self._narrow_to(anchor=contextual_message_id, dms=True)
+ self._narrow_to(anchor=contextual_message_id, pms=True)
658
659
def narrow_to_all_starred(self) -> None:
660
# NOTE: Should we allow maintaining anchor focus here?
0 commit comments