|
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 |
2 | 2 |
|
3 | 3 |
|
4 | 4 | VIM REFERENCE MANUAL by Bram Moolenaar |
@@ -2528,6 +2528,7 @@ test_autochdir() none enable 'autochdir' during startup |
2528 | 2528 | test_feedinput({string}) none add key sequence to input buffer |
2529 | 2529 | test_garbagecollect_now() none free memory right now for testing |
2530 | 2530 | test_ignore_error({expr}) none ignore a specific error |
| 2531 | +test_null_blob() Blob null value for testing |
2531 | 2532 | test_null_channel() Channel null value for testing |
2532 | 2533 | test_null_dict() Dict null value for testing |
2533 | 2534 | test_null_job() Job null value for testing |
@@ -3129,7 +3130,7 @@ ch_evalraw({handle}, {string} [, {options}]) *ch_evalraw()* |
3129 | 3130 | is removed. |
3130 | 3131 | Note that Vim does not know when the text received on a raw |
3131 | 3132 | 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. |
3133 | 3134 | See |channel-use|. |
3134 | 3135 |
|
3135 | 3136 | {only available when compiled with the |+channel| feature} |
@@ -9338,25 +9339,28 @@ test_ignore_error({expr}) *test_ignore_error()* |
9338 | 9339 | When the {expr} is the string "RESET" then the list of ignored |
9339 | 9340 | errors is made empty. |
9340 | 9341 |
|
| 9342 | +test_null_blob() *test_null_blob()* |
| 9343 | + Return a |Blob| that is null. Only useful for testing. |
| 9344 | + |
9341 | 9345 | 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. |
9343 | 9347 | {only available when compiled with the +channel feature} |
9344 | 9348 |
|
9345 | 9349 | 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. |
9347 | 9351 |
|
9348 | 9352 | 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. |
9350 | 9354 | {only available when compiled with the +job feature} |
9351 | 9355 |
|
9352 | 9356 | 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. |
9354 | 9358 |
|
9355 | 9359 | 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. |
9357 | 9361 |
|
9358 | 9362 | 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. |
9360 | 9364 |
|
9361 | 9365 | test_option_not_set({name}) *test_option_not_set()* |
9362 | 9366 | Reset the flag that indicates option {name} was set. Thus it |
|
0 commit comments