summaryrefslogtreecommitdiff
path: root/doc/en/autogen/user/guile_commands.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/en/autogen/user/guile_commands.adoc')
-rw-r--r--doc/en/autogen/user/guile_commands.adoc32
1 files changed, 0 insertions, 32 deletions
diff --git a/doc/en/autogen/user/guile_commands.adoc b/doc/en/autogen/user/guile_commands.adoc
deleted file mode 100644
index 81e7934ec..000000000
--- a/doc/en/autogen/user/guile_commands.adoc
+++ /dev/null
@@ -1,32 +0,0 @@
-//
-// This file is auto-generated by script docgen.py.
-// DO NOT EDIT BY HAND!
-//
-[[command_guile_guile]]
-* `+guile+`: list/load/unload scripts
-
-----
-/guile list|listfull [<name>]
- load [-q] <filename>
- autoload
- reload|unload [-q] [<name>]
- eval [-o|-oc] <code>
- version
-
- 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
- -q: quiet mode: do not display messages
- name: a script name (name used in call to "register" function)
- eval: evaluate source code and display result on current buffer
- -o: send evaluation result to the buffer without executing commands
- -oc: send evaluation result to the buffer and execute commands
- code: source code to evaluate
- version: display the version of interpreter used
-
-Without argument, this command lists all loaded scripts.
-----