diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-05-25 12:25:58 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-05-25 12:47:24 +0200 |
commit | dc0229617ada67fd02815bbc94b245871248b9db (patch) | |
tree | 0af7418d7f3ebf8082408fa2ee9e73f5a572360f /doc/en/autogen/user/guile_commands.asciidoc | |
parent | 76a066c9cca620e1204815f63abbfa8b09f162c6 (diff) | |
download | weechat-dc0229617ada67fd02815bbc94b245871248b9db.zip |
doc: use .asciidoc extension instead of .txt for doc files
Diffstat (limited to 'doc/en/autogen/user/guile_commands.asciidoc')
-rw-r--r-- | doc/en/autogen/user/guile_commands.asciidoc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/en/autogen/user/guile_commands.asciidoc b/doc/en/autogen/user/guile_commands.asciidoc new file mode 100644 index 000000000..3a339f99e --- /dev/null +++ b/doc/en/autogen/user/guile_commands.asciidoc @@ -0,0 +1,22 @@ +[[command_guile_guile]] +[command]*`guile`* list/load/unload scripts:: + +---- +/guile list|listfull [<name>] + load [-q] <filename> + autoload + reload|unload [-q] [<name>] + + list: list loaded scripts +listfull: list loaded scripts (verbose) + load: load a script +autoload: load all scripts in "autoload" directory + reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) + unload: unload a script (if no name given, unload all scripts) +filename: script (file) to load + name: a script name (name used in call to "register" function) + -q: quiet mode: do not display messages + +Without argument, this command lists all loaded scripts. +---- + |