From 223fe85449200901efcfef9bb956d86aa74981d4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 7 Jun 2018 18:22:39 +0530 Subject: [PATCH] Mention the kitty website in kitty --help --- kitty/cli.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/kitty/cli.py b/kitty/cli.py index 8a2888179..d9bb3b71a 100644 --- a/kitty/cli.py +++ b/kitty/cli.py @@ -323,10 +323,12 @@ def wrap(text, limit=80): return reversed(lines) -default_msg = ( - 'Run the :italic:`{appname}` terminal emulator. You can also specify the :italic:`program` to run inside :italic:`{appname}` as normal' - ' arguments following the :italic:`options`. For example: {appname} /bin/sh' - ).format(appname=appname) +default_msg = ('''\ +Run the :italic:`{appname}` terminal emulator. You can also specify the :italic:`program` +to run inside :italic:`{appname}` as normal arguments following the :italic:`options`. +For example: {appname} /bin/sh + +For comprehensive documentation for kitty, please visit: https://sw.kovidgoyal.net/kitty''').format(appname=appname) def print_help_for_seq(seq, usage, message, appname):