From fc95d00e11198338528ba960da6148499ee06717 Mon Sep 17 00:00:00 2001 From: Florent de Lamotte Date: Fri, 18 Apr 2025 23:05:14 +0200 Subject: [PATCH] correct chat intro to fit phone screen --- src/meshcore_cli/meshcore_cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/meshcore_cli/meshcore_cli.py b/src/meshcore_cli/meshcore_cli.py index 01b4776..a168be5 100644 --- a/src/meshcore_cli/meshcore_cli.py +++ b/src/meshcore_cli/meshcore_cli.py @@ -162,9 +162,9 @@ async def subscribe_to_msgs(mc): async def interactive_loop(mc, to=None) : print("""Interactive mode, most commands from terminal chat should work. -Use \"to\" to selects contact, \"list\" to list contacts, \"send\" to send a message ... +Use \"to\" to select recipient, use Tab to complete name ... Line starting with \"$\" or \".\" will issue a meshcli command. -\"quit\" or \"q\" will end interactive mode""") +\"quit\", \"q\", CTRL+D will end interactive mode""") await mc.ensure_contacts() await subscribe_to_msgs(mc)