summaryrefslogtreecommitdiff
path: root/doc/ja/autogen/user/guile_commands.adoc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2018-01-06 13:58:26 +0100
committerSébastien Helleu <flashcode@flashtux.org>2018-01-06 14:07:57 +0100
commit9876a8d0a78a118f65a020c727c1fb079b9adcbd (patch)
treeb55504f846ebfcbcc70766dc00f9ad6164ae14d1 /doc/ja/autogen/user/guile_commands.adoc
parentbab307bf1b5ac07c45fd2ddb78930831bddb9c4b (diff)
downloadweechat-9876a8d0a78a118f65a020c727c1fb079b9adcbd.zip
core: update translations (issue #128)
Diffstat (limited to 'doc/ja/autogen/user/guile_commands.adoc')
-rw-r--r--doc/ja/autogen/user/guile_commands.adoc27
1 files changed, 16 insertions, 11 deletions
diff --git a/doc/ja/autogen/user/guile_commands.adoc b/doc/ja/autogen/user/guile_commands.adoc
index 8bbe306c0..48ecdfe64 100644
--- a/doc/ja/autogen/user/guile_commands.adoc
+++ b/doc/ja/autogen/user/guile_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.
----