From 21dbb0e82038a5540337355fa1208536ba9117dc Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 25 Jul 2018 09:49:01 +0530 Subject: [PATCH] Improve the help message for the kitten remote control cmd --- kitty/cmds.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kitty/cmds.py b/kitty/cmds.py index bf29185be..52ca9de1e 100644 --- a/kitty/cmds.py +++ b/kitty/cmds.py @@ -685,7 +685,10 @@ def set_background_opacity(boss, window, payload): # kitten {{{ @cmd( 'Run a kitten', - 'Run a kitten over the specified window (active window by default)', + 'Run a kitten over the specified window (active window by default).' + ' The :italic:`kitten_name` can be either the name of a builtin kitten' + ' or the path to a python file containing a custom kitten. If a relative path' + ' is used it is searched for in the kitty config directory.', options_spec=MATCH_WINDOW_OPTION, argspec='kitten_name', )