summaryrefslogtreecommitdiff
path: root/doc/ja/autogen
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2014-06-27 07:54:53 +0200
committerSébastien Helleu <flashcode@flashtux.org>2014-06-27 07:54:53 +0200
commit1a1c50cc01a5a91013b86708dc2a8e5ad330619e (patch)
tree41f1db8017db611cab2a9b45393d024775dbb80c /doc/ja/autogen
parent6cdcb6feca0a7e040298f3a5e3f867fc93dd6bf8 (diff)
downloadweechat-1a1c50cc01a5a91013b86708dc2a8e5ad330619e.zip
core: add option "env" in command /set
Diffstat (limited to 'doc/ja/autogen')
-rw-r--r--doc/ja/autogen/plugin_api/completions.asciidoc4
-rw-r--r--doc/ja/autogen/user/weechat_commands.asciidoc44
2 files changed, 29 insertions, 19 deletions
diff --git a/doc/ja/autogen/plugin_api/completions.asciidoc b/doc/ja/autogen/plugin_api/completions.asciidoc
index ed6421fd8..372aff72d 100644
--- a/doc/ja/autogen/plugin_api/completions.asciidoc
+++ b/doc/ja/autogen/plugin_api/completions.asciidoc
@@ -114,6 +114,10 @@
| weechat | cursor_areas | カーソルを自由に動かせるエリア ("chat" またはバーの名前)
+| weechat | env_value | value of an environment variable
+
+| weechat | env_vars | environment variables
+
| weechat | filename | ファイル名
| weechat | filters_names | フィルタ名
diff --git a/doc/ja/autogen/user/weechat_commands.asciidoc b/doc/ja/autogen/user/weechat_commands.asciidoc
index 3139f558b..18bbf706c 100644
--- a/doc/ja/autogen/user/weechat_commands.asciidoc
+++ b/doc/ja/autogen/user/weechat_commands.asciidoc
@@ -755,33 +755,39 @@ ${sec.data.xxx} の形でフォーマットされた保護データは以下の
----
[[command_weechat_set]]
-[command]*`set`* オプションの設定::
+[command]*`set`* set config options and environment variables::
----
/set [<option> [<value>]]
diff [<option> [<option>...]]
-
-option: オプションの名前 (ワイルドカード '*' を使うことができます)
- value: オプションに対する新しい値
- diff: 変更されたオプションのみを表示
-
-新しいオプションは以下の変数型に従います:
- boolean: on、off、toggle
- integer: 番号、++番号、--番号
- string: 任意の文字列 (空文字列は "")
- color: 色の名前、++色番号、--色番号
-
-どんな型であっても、オプションの値を削除する (未定義値にする) には null が使えます。これはいくつかの特別なプラグイン変数でのみ有効です。
-
-例:
- ハイライトに関するオプションを表示:
+ env [<variable> [<value>]]
+
+option: name of an option (wildcard "*" is allowed)
+ value: new value for option, according to type:
+ boolean: on, off or toggle
+ integer: number, ++number or --number
+ string: any string ("" for empty string)
+ color: color name, ++number or --number
+ Note: for all types, you can use null to remove option value (undefined value). This works only for some special plugin variables.
+ diff: display only changed options
+ env: display or set an environment variable (use value "" to unset a variable)
+
+Examples:
+ display options about highlight:
/set *highlight*
- highlight に単語を追加:
+ add a word to highlight:
/set weechat.look.highlight "word"
- 変更されたオプションを表示:
+ display changed options:
/set diff
- irc プラグインのオプションの内、変更されたオプションを表示
+ display changed options in irc plugin:
/set diff irc.*
+ display value of environment variable LANG:
+ /set env LANG
+ set environment variable LANG and use it:
+ /set env LANG fr_FR.UTF-8
+ /upgrade
+ unset environment variable ABC:
+ /set env ABC ""
----
[[command_weechat_unset]]