summaryrefslogtreecommitdiff
path: root/doc/ja/autogen/user/lua_commands.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ja/autogen/user/lua_commands.adoc')
-rw-r--r--doc/ja/autogen/user/lua_commands.adoc27
1 files changed, 16 insertions, 11 deletions
diff --git a/doc/ja/autogen/user/lua_commands.adoc b/doc/ja/autogen/user/lua_commands.adoc
index 1f1f053c2..c0145ed41 100644
--- a/doc/ja/autogen/user/lua_commands.adoc
+++ b/doc/ja/autogen/user/lua_commands.adoc
@@ -10,18 +10,23 @@
load [-q] <filename>
autoload
reload|unload [-q] [<name>]
+ eval [-o|-oc] <code>
version
- list: ロード済みスクリプトをリストアップ
-listfull: ロード済みスクリプトをリストアップ (詳細)
- load: スクリプトをロード
-autoload: "autoload" ディレクトリに含まれる全てのスクリプトをロード
- reload: スクリプトのリロード (名前を指定しなかった場合、全てのスクリプトをアンロードし、"autoload" ディレクトリに含まれる全てのスクリプトをロード)
- unload: スクリプトのアンロード (名前を指定しなかった場合、全てのスクリプトをアンロード)
-filename: ロードするスクリプト (ファイル)
- name: スクリプト名 (名前は "register" 関数を呼び出すために使われる)
- -q: 出力抑制モード: メッセージを表示しない
- 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.
----