mirror of
https://github.com/weechat/weechat.git
synced 2026-07-03 00:03:12 +02:00
Fixed typo in help for script plugin commands (/perl, /python, /ruby, /lua)
This commit is contained in:
@@ -1977,8 +1977,9 @@ weechat_plugin_init (t_weechat_plugin *plugin)
|
||||
|
||||
plugin->cmd_handler_add (plugin, "lua",
|
||||
"list/load/unload Lua scripts",
|
||||
"[load filename] | [autoload] | [reload] | [unload]",
|
||||
"filename: Lua script (file) to load\n\n"
|
||||
"[load filename] | [autoload] | [reload] | [unload [script]]",
|
||||
"filename: Lua script (file) to load\n"
|
||||
"script: script name to unload\n\n"
|
||||
"Without argument, /lua command lists all loaded Lua scripts.",
|
||||
"load|autoload|reload|unload",
|
||||
weechat_lua_cmd, NULL, NULL);
|
||||
|
||||
@@ -1797,8 +1797,9 @@ weechat_plugin_init (t_weechat_plugin *plugin)
|
||||
|
||||
plugin->cmd_handler_add (plugin, "perl",
|
||||
"list/load/unload Perl scripts",
|
||||
"[load filename] | [autoload] | [reload] | [unload]",
|
||||
"filename: Perl script (file) to load\n\n"
|
||||
"[load filename] | [autoload] | [reload] | [unload [script]]",
|
||||
"filename: Perl script (file) to load\n"
|
||||
"script: script name to unload\n\n"
|
||||
"Without argument, /perl command lists all loaded Perl scripts.",
|
||||
"load|autoload|reload|unload",
|
||||
weechat_perl_cmd, NULL, NULL);
|
||||
|
||||
@@ -1750,8 +1750,9 @@ weechat_plugin_init (t_weechat_plugin *plugin)
|
||||
|
||||
plugin->cmd_handler_add (plugin, "python",
|
||||
"list/load/unload Python scripts",
|
||||
"[load filename] | [autoload] | [reload] | [unload]",
|
||||
"filename: Python script (file) to load\n\n"
|
||||
"[load filename] | [autoload] | [reload] | [unload [script]]",
|
||||
"filename: Python script (file) to load\n"
|
||||
"script: script name to unload\n\n"
|
||||
"Without argument, /python command lists all loaded Python scripts.",
|
||||
"load|autoload|reload|unload",
|
||||
weechat_python_cmd, NULL, NULL);
|
||||
|
||||
@@ -1996,8 +1996,9 @@ weechat_plugin_init (t_weechat_plugin *plugin)
|
||||
|
||||
plugin->cmd_handler_add (plugin, "ruby",
|
||||
"list/load/unload Ruby scripts",
|
||||
"[load filename] | [autoload] | [reload] | [unload]",
|
||||
"filename: Ruby script (file) to load\n\n"
|
||||
"[load filename] | [autoload] | [reload] | [unload [script]]",
|
||||
"filename: Ruby script (file) to load\n"
|
||||
"script: script name to unload\n\n"
|
||||
"Without argument, /ruby command lists all loaded Ruby scripts.",
|
||||
"load|autoload|reload|unload",
|
||||
weechat_ruby_cmd, NULL, NULL);
|
||||
|
||||
Reference in New Issue
Block a user