mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-24 18:07:01 +00:00
Mention the kitty website in kitty --help
This commit is contained in:
parent
365c992f80
commit
223fe85449
1 changed files with 6 additions and 4 deletions
10
kitty/cli.py
10
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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue