summaryrefslogtreecommitdiff
path: root/doc/it/autogen/user/lua_commands.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/it/autogen/user/lua_commands.txt')
-rw-r--r--doc/it/autogen/user/lua_commands.txt22
1 files changed, 15 insertions, 7 deletions
diff --git a/doc/it/autogen/user/lua_commands.txt b/doc/it/autogen/user/lua_commands.txt
index 874f109c9..ed6cb3bb3 100644
--- a/doc/it/autogen/user/lua_commands.txt
+++ b/doc/it/autogen/user/lua_commands.txt
@@ -1,11 +1,19 @@
-• *`/lua`* `[list [nome]] | [listfull [nome]] | [load file] | [autoload] | [reload [nome]] | [unload [nome]]`::
-
+[command]*`lua`* elenca/attiva/disattiva script::
........................................
- elenca/attiva/disattiva script
+/lua list|listfull [<name>]
+ load <filename>
+ autoload
+ reload|unload [<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)
- nome_file: file script da attivare
- nome: il nome dello script
-
- Senza argomenti, il comando elenca tutti gli script attivati
+Without argument, this command lists all loaded scripts.
........................................