diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-01-15 22:00:15 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-01-15 22:00:15 +0100 |
commit | 8fbbe8b0d509df26ff86ca8cd7fe4b2205c6d15e (patch) | |
tree | 3dd9f08f31f4c1fb513119a57f4ff33a45b51556 /doc/ja/autogen/user | |
parent | 21e63e7958c499b79a63612d7344ad4d53bd4284 (diff) | |
download | weechat-8fbbe8b0d509df26ff86ca8cd7fe4b2205c6d15e.zip |
scripts: add option "eval_keep_context" in script plugins
Diffstat (limited to 'doc/ja/autogen/user')
-rw-r--r-- | doc/ja/autogen/user/guile_options.adoc | 6 | ||||
-rw-r--r-- | doc/ja/autogen/user/javascript_options.adoc | 6 | ||||
-rw-r--r-- | doc/ja/autogen/user/lua_options.adoc | 6 | ||||
-rw-r--r-- | doc/ja/autogen/user/perl_options.adoc | 6 | ||||
-rw-r--r-- | doc/ja/autogen/user/php_options.adoc | 6 | ||||
-rw-r--r-- | doc/ja/autogen/user/python_options.adoc | 6 | ||||
-rw-r--r-- | doc/ja/autogen/user/ruby_options.adoc | 6 | ||||
-rw-r--r-- | doc/ja/autogen/user/tcl_options.adoc | 6 |
8 files changed, 48 insertions, 0 deletions
diff --git a/doc/ja/autogen/user/guile_options.adoc b/doc/ja/autogen/user/guile_options.adoc index 8647db466..bdf6ec5f7 100644 --- a/doc/ja/autogen/user/guile_options.adoc +++ b/doc/ja/autogen/user/guile_options.adoc @@ -7,3 +7,9 @@ ** タイプ: ブール ** 値: on, off ** デフォルト値: `+off+` + +* [[option_guile.look.eval_keep_context]] *guile.look.eval_keep_context* +** 説明: pass:none[keep context between two calls to /guile eval (or info "guile_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` diff --git a/doc/ja/autogen/user/javascript_options.adoc b/doc/ja/autogen/user/javascript_options.adoc index 0b9fd56a0..fd515bc98 100644 --- a/doc/ja/autogen/user/javascript_options.adoc +++ b/doc/ja/autogen/user/javascript_options.adoc @@ -7,3 +7,9 @@ ** タイプ: ブール ** 値: on, off ** デフォルト値: `+off+` + +* [[option_javascript.look.eval_keep_context]] *javascript.look.eval_keep_context* +** 説明: pass:none[keep context between two calls to /javascript eval (or info "javascript_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` diff --git a/doc/ja/autogen/user/lua_options.adoc b/doc/ja/autogen/user/lua_options.adoc index ca20e2609..e8fdd85fb 100644 --- a/doc/ja/autogen/user/lua_options.adoc +++ b/doc/ja/autogen/user/lua_options.adoc @@ -7,3 +7,9 @@ ** タイプ: ブール ** 値: on, off ** デフォルト値: `+off+` + +* [[option_lua.look.eval_keep_context]] *lua.look.eval_keep_context* +** 説明: pass:none[keep context between two calls to /lua eval (or info "lua_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` diff --git a/doc/ja/autogen/user/perl_options.adoc b/doc/ja/autogen/user/perl_options.adoc index b4f321205..3c16e3924 100644 --- a/doc/ja/autogen/user/perl_options.adoc +++ b/doc/ja/autogen/user/perl_options.adoc @@ -7,3 +7,9 @@ ** タイプ: ブール ** 値: on, off ** デフォルト値: `+off+` + +* [[option_perl.look.eval_keep_context]] *perl.look.eval_keep_context* +** 説明: pass:none[keep context between two calls to /perl eval (or info "perl_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` diff --git a/doc/ja/autogen/user/php_options.adoc b/doc/ja/autogen/user/php_options.adoc index 1de9f4a0a..1a4c33347 100644 --- a/doc/ja/autogen/user/php_options.adoc +++ b/doc/ja/autogen/user/php_options.adoc @@ -7,3 +7,9 @@ ** タイプ: ブール ** 値: on, off ** デフォルト値: `+off+` + +* [[option_php.look.eval_keep_context]] *php.look.eval_keep_context* +** 説明: pass:none[keep context between two calls to /php eval (or info "php_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` diff --git a/doc/ja/autogen/user/python_options.adoc b/doc/ja/autogen/user/python_options.adoc index c7334801b..eae365b04 100644 --- a/doc/ja/autogen/user/python_options.adoc +++ b/doc/ja/autogen/user/python_options.adoc @@ -7,3 +7,9 @@ ** タイプ: ブール ** 値: on, off ** デフォルト値: `+off+` + +* [[option_python.look.eval_keep_context]] *python.look.eval_keep_context* +** 説明: pass:none[keep context between two calls to /python eval (or info "python_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` diff --git a/doc/ja/autogen/user/ruby_options.adoc b/doc/ja/autogen/user/ruby_options.adoc index fcfc351e6..b8aa21359 100644 --- a/doc/ja/autogen/user/ruby_options.adoc +++ b/doc/ja/autogen/user/ruby_options.adoc @@ -7,3 +7,9 @@ ** タイプ: ブール ** 値: on, off ** デフォルト値: `+off+` + +* [[option_ruby.look.eval_keep_context]] *ruby.look.eval_keep_context* +** 説明: pass:none[keep context between two calls to /ruby eval (or info "ruby_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` diff --git a/doc/ja/autogen/user/tcl_options.adoc b/doc/ja/autogen/user/tcl_options.adoc index df1cfb47d..339c2b396 100644 --- a/doc/ja/autogen/user/tcl_options.adoc +++ b/doc/ja/autogen/user/tcl_options.adoc @@ -7,3 +7,9 @@ ** タイプ: ブール ** 値: on, off ** デフォルト値: `+off+` + +* [[option_tcl.look.eval_keep_context]] *tcl.look.eval_keep_context* +** 説明: pass:none[keep context between two calls to /tcl eval (or info "tcl_eval"); a hidden script is used to eval script code; if this option is disabled, this hidden script is unloaded after each eval: this uses less memory, but is slower] +** タイプ: ブール +** 値: on, off +** デフォルト値: `+on+` |