diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-08-17 09:55:02 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-08-17 09:55:02 +0200 |
commit | 2485831d4aef6eded3d5efea3ef81ff3c1d87e00 (patch) | |
tree | 8185866f2e06d2fa566f108251136e9fc1e962a8 /doc/de/autogen/user/script_commands.txt | |
parent | 43894db0bcd3fb89ea99413fc34af826938ef3c3 (diff) | |
download | weechat-2485831d4aef6eded3d5efea3ef81ff3c1d87e00.zip |
script: add option "reload" for command /script, fix completion of /script, add examples in /help script
Diffstat (limited to 'doc/de/autogen/user/script_commands.txt')
-rw-r--r-- | doc/de/autogen/user/script_commands.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/de/autogen/user/script_commands.txt b/doc/de/autogen/user/script_commands.txt index 80d46a9fe..74bfbcaab 100644 --- a/doc/de/autogen/user/script_commands.txt +++ b/doc/de/autogen/user/script_commands.txt @@ -3,7 +3,7 @@ ........................................ /script list show <script> - load|unload <script> [<script>...] + load|unload|reload <script> [<script>...] install|remove|hold <script> [<script>...] upgrade update @@ -12,6 +12,7 @@ show: show detailed info about a script load: load script(s) unload: unload script(s) + reload: reload script(s) install: install/upgrade script(s) remove: remove script(s) hold: hold/unhold script(s) (a script held will not be upgraded any more and cannot be removed) @@ -44,5 +45,12 @@ Input allowed on script buffer: s: reset sort (use default sort) word(s) filter scripts: search word(s) in scripts (description, tags, ...) * remove filter + +Examples: + /script install iset.pl buffers.pl + /script remove iset.pl + /script hold urlserver.py + /script reload urlserver + /script upgrade ........................................ |