summaryrefslogtreecommitdiff
path: root/doc/ja/autogen/user/script_commands.adoc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2020-05-03 14:03:50 +0200
committerSébastien Helleu <flashcode@flashtux.org>2020-05-03 14:05:18 +0200
commit505a91c6003058adf531255dc9a41efea5c7d1f8 (patch)
tree8cbf78be1fa3b9fde46b95e91f90425a63eb6a80 /doc/ja/autogen/user/script_commands.adoc
parent7bcb8ff0d8bfd05657a78096d5dd12c2d44fbf02 (diff)
downloadweechat-505a91c6003058adf531255dc9a41efea5c7d1f8.zip
doc: merge 53 autogen files into 11 files, move them to includes directory
Diffstat (limited to 'doc/ja/autogen/user/script_commands.adoc')
-rw-r--r--doc/ja/autogen/user/script_commands.adoc82
1 files changed, 0 insertions, 82 deletions
diff --git a/doc/ja/autogen/user/script_commands.adoc b/doc/ja/autogen/user/script_commands.adoc
deleted file mode 100644
index 5b20667a2..000000000
--- a/doc/ja/autogen/user/script_commands.adoc
+++ /dev/null
@@ -1,82 +0,0 @@
-//
-// This file is auto-generated by script docgen.py.
-// DO NOT EDIT BY HAND!
-//
-[[command_script_script]]
-* `+script+`: WeeChat スクリプトマネージャ
-
-----
-/script list [-o|-ol|-i|-il]
- 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 (string in English)
- -ol: send list of loaded scripts to buffer (translated string)
- -i: copy list of loaded scripts in command line (for sending to buffer) (string in English)
- -il: copy list of loaded scripts in command line (for sending to buffer) (translated string)
- search: search scripts by tags, language (python, perl, ...), filename extension (py, pl, ...) or text; result is displayed 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.
-
-On script buffer, the possible status for each script are:
- * i a H r N
- | | | | | |
- | | | | | obsolete (new version available)
- | | | | running (loaded)
- | | | held
- | | autoloaded
- | installed
- popular script
-
-Keys on script buffer:
- alt+i install script
- alt+r remove script
- alt+l load script
- alt+L reload script
- alt+u unload script
- alt+A autoload script
- alt+h (un)hold script
- alt+v view script
-
-Input allowed on script buffer:
- i/r/l/L/u/A/h/v action on script (same as keys above)
- q close buffer
- $ refresh buffer
- s:x,y sort buffer using keys x and y (see /help script.look.sort)
- s: reset sort (use default sort)
- word(s) filter scripts: search word(s) in scripts (description, tags, ...)
- * remove filter
-
-Mouse actions on script buffer:
- wheel scroll list
- left button select script
- right button install/remove script
-
-Examples:
- /script search url
- /script install go.py urlserver.py
- /script remove go.py
- /script hold urlserver.py
- /script reload urlserver
- /script upgrade
-----