add debug commands to help text
authorChristian Garbs <mitch@cgarbs.de>
Mon, 7 Jan 2008 19:57:03 +0000 (20:57 +0100)
committerRalf Ertzinger <sun@lain.camperquake.de>
Mon, 7 Jan 2008 21:13:19 +0000 (22:13 +0100)
videosite.pl

index 7803fa3..9be1fee 100644 (file)
@@ -154,7 +154,16 @@ sub cmd_help {
         }
         write_irssi(undef, 'No such module');
     } else {
-        write_irssi(undef, "Supported commands:\n save: Save the current configuration\n help [modulename]: Display this help, or module specific help\n show [modulename]: Show loaded modules, or the current parameters of a module\n set modulename parameter value: set a module parameter to a new value\n getter [modulename]: display or set the getter to use");
+        write_irssi(undef,
+                   "Supported commands:\n".
+                   " save: Save the current configuration\n".
+                   " help [modulename]: Display this help, or module specific help\n".
+                   " show [modulename]: Show loaded modules, or the current parameters of a module\n".
+                   " set modulename parameter value: set a module parameter to a new value\n".
+                   " getter [modulename]: display or set the getter to use\n".
+                   " debug: enable debugging messages\n".
+                   " nodebug: disable debugging messages"
+                   );
     }
 }