diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-02-25 08:46:41 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-02-25 08:46:41 +0100 |
commit | b60aec975ba13d347edd3a110cbfef7699bc3cfb (patch) | |
tree | 99945fce576fe848714bdeb9486f6fdbab974c2d /doc/en/autogen/user/script_commands.txt | |
parent | 87b50969722b894bebe791211b232da5ffd82082 (diff) | |
download | weechat-b60aec975ba13d347edd3a110cbfef7699bc3cfb.zip |
script: add control of autoload (enable/disable/toggle) (task #12393)
New option script.scripts.autoload, new options autoload/noautoload/toggleautoload
for command /script, new action "A" (meta-A) on script buffer (toggle autoload).
Diffstat (limited to 'doc/en/autogen/user/script_commands.txt')
-rw-r--r-- | doc/en/autogen/user/script_commands.txt | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/doc/en/autogen/user/script_commands.txt b/doc/en/autogen/user/script_commands.txt index 4455af8b9..f36095f05 100644 --- a/doc/en/autogen/user/script_commands.txt +++ b/doc/en/autogen/user/script_commands.txt @@ -5,25 +5,29 @@ search <text> show <script> load|unload|reload <script> [<script>...] + autoload|noautoload|toggleautoload <script> [<script>...] install|remove|installremove|hold [-q] <script> [<script>...] upgrade update - list: list loaded scripts (all languages) - -o: send list of loaded scripts to buffer - -i: copy list of loaded scripts in command line (for sending to buffer) - search: search scripts by tags or text and display result on scripts buffer - 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) -installremove: install or remove script(s), depending on current state - hold: hold/unhold script(s) (a script held will not be upgraded any more and cannot be removed) - -q: quiet mode: do not display messages - upgrade: upgrade all installed scripts which are obsolete (new version available) - update: update local scripts cache + list: list loaded scripts (all languages) + -o: send list of loaded scripts to buffer + -i: copy list of loaded scripts in command line (for sending to buffer) + search: search scripts by tags or text and display result on scripts buffer + show: show detailed info about a script + load: load script(s) + unload: unload script(s) + reload: reload script(s) + autoload: autoload the script + noautoload: do not autoload the script +toggleautoload: toggle autoload + install: install/upgrade script(s) + remove: remove script(s) + installremove: install or remove script(s), depending on current state + hold: hold/unhold script(s) (a script held will not be upgraded any more and cannot be removed) + -q: quiet mode: do not display messages + upgrade: upgrade all installed scripts which are obsolete (new version available) + update: update local scripts cache Without argument, this command opens a buffer with list of scripts. |