Skip to content

Commit c920157

Browse files
committed
Update #3
1 parent c314d64 commit c920157

File tree

2 files changed

+24
-16
lines changed

2 files changed

+24
-16
lines changed

doc/eval.jax

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim バージョン 8.1. Last change: 2019 Jan 11
1+
*eval.txt* For Vim バージョン 8.1. Last change: 2019 Jan 13
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -2500,6 +2500,7 @@ test_autochdir() なし 起動時に 'autochdir' を有効にする
25002500
test_feedinput({string}) なし キー入力を入力バッファに追加する
25012501
test_garbagecollect_now() なし テスト用に直ちにメモリを解放する
25022502
test_ignore_error({expr}) なし 特定のエラーを無視する
2503+
test_null_blob() Blob テスト用のnull値
25032504
test_null_channel() チャネル テスト用のnull値
25042505
test_null_dict() 辞書 テスト用のnull値
25052506
test_null_job() ジョブ テスト用のnull値
@@ -3090,7 +3091,7 @@ ch_evalraw({handle}, {string} [, {options}]) *ch_evalraw()*
30903091
では改行が付与されない。NL は応答から削除される。
30913092
Note: Vim は Raw チャネル上で受け取るテキストがいつ完了するの
30923093
か分からない。最初の部分だけを返す可能性もあり、残りを取り出す
3093-
ために ch_readraw() を使う必要がある。
3094+
ために |ch_readraw()| を使う必要がある。
30943095
|channel-use| を参照。
30953096

30963097
{|+channel| 機能付きでコンパイルされたときのみ有効}
@@ -9091,25 +9092,28 @@ test_ignore_error({expr}) *test_ignore_error()*
90919092
{expr} が文字列 "RESET" の場合、無視されるエラーのリストは空に
90929093
なる。
90939094

9095+
test_null_blob() *test_null_blob()*
9096+
null の |Blob| を返す。これはテストのみに使われる。
9097+
90949098
test_null_channel() *test_null_channel()*
9095-
null の Channel を返す。これはテストのみに使われる。
9099+
null の |Channel| を返す。これはテストのみに使われる。
90969100
{|+channel| 機能つきでコンパイルされたときのみ有効}
90979101

90989102
test_null_dict() *test_null_dict()*
9099-
null の Dict を返す。これはテストのみに使われる。
9103+
null の |Dict| を返す。これはテストのみに使われる。
91009104

91019105
test_null_job() *test_null_job()*
9102-
null の Job を返す。これはテストのみに使われる。
9106+
null の |Job| を返す。これはテストのみに使われる。
91039107
{|+job| 機能つきでコンパイルされたときのみ有効}
91049108

91059109
test_null_list() *test_null_list()*
9106-
null の List を返す。これはテストのみに使われる。
9110+
null の |List| を返す。これはテストのみに使われる。
91079111

91089112
test_null_partial() *test_null_partial()*
9109-
null の Partial を返す。これはテストのみに使われる。
9113+
null の |Partial| を返す。これはテストのみに使われる。
91109114

91119115
test_null_string() *test_null_string()*
9112-
null の String を返す。これはテストのみに使われる。
9116+
null の |String| を返す。これはテストのみに使われる。
91139117

91149118
test_option_not_set({name}) *test_option_not_set()*
91159119
オプション {name} が設定されたことを示すフラグをリセットする。

en/eval.txt

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim version 8.1. Last change: 2019 Jan 11
1+
*eval.txt* For Vim version 8.1. Last change: 2019 Jan 13
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2528,6 +2528,7 @@ test_autochdir() none enable 'autochdir' during startup
25282528
test_feedinput({string}) none add key sequence to input buffer
25292529
test_garbagecollect_now() none free memory right now for testing
25302530
test_ignore_error({expr}) none ignore a specific error
2531+
test_null_blob() Blob null value for testing
25312532
test_null_channel() Channel null value for testing
25322533
test_null_dict() Dict null value for testing
25332534
test_null_job() Job null value for testing
@@ -3129,7 +3130,7 @@ ch_evalraw({handle}, {string} [, {options}]) *ch_evalraw()*
31293130
is removed.
31303131
Note that Vim does not know when the text received on a raw
31313132
channel is complete, it may only return the first part and you
3132-
need to use ch_readraw() to fetch the rest.
3133+
need to use |ch_readraw()| to fetch the rest.
31333134
See |channel-use|.
31343135

31353136
{only available when compiled with the |+channel| feature}
@@ -9338,25 +9339,28 @@ test_ignore_error({expr}) *test_ignore_error()*
93389339
When the {expr} is the string "RESET" then the list of ignored
93399340
errors is made empty.
93409341

9342+
test_null_blob() *test_null_blob()*
9343+
Return a |Blob| that is null. Only useful for testing.
9344+
93419345
test_null_channel() *test_null_channel()*
9342-
Return a Channel that is null. Only useful for testing.
9346+
Return a |Channel| that is null. Only useful for testing.
93439347
{only available when compiled with the +channel feature}
93449348

93459349
test_null_dict() *test_null_dict()*
9346-
Return a Dict that is null. Only useful for testing.
9350+
Return a |Dict| that is null. Only useful for testing.
93479351

93489352
test_null_job() *test_null_job()*
9349-
Return a Job that is null. Only useful for testing.
9353+
Return a |Job| that is null. Only useful for testing.
93509354
{only available when compiled with the +job feature}
93519355

93529356
test_null_list() *test_null_list()*
9353-
Return a List that is null. Only useful for testing.
9357+
Return a |List| that is null. Only useful for testing.
93549358

93559359
test_null_partial() *test_null_partial()*
9356-
Return a Partial that is null. Only useful for testing.
9360+
Return a |Partial| that is null. Only useful for testing.
93579361

93589362
test_null_string() *test_null_string()*
9359-
Return a String that is null. Only useful for testing.
9363+
Return a |String| that is null. Only useful for testing.
93609364

93619365
test_option_not_set({name}) *test_option_not_set()*
93629366
Reset the flag that indicates option {name} was set. Thus it

0 commit comments

Comments
 (0)