File tree Expand file tree Collapse file tree 2 files changed +17
-7
lines changed Expand file tree Collapse file tree 2 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 1
- *testing.txt* For Vim バージョン 9.1. Last change: 2024 Jul 18
1
+ *testing.txt* For Vim バージョン 9.1. Last change: 2025 Mar 25
2
2
3
3
4
4
VIMリファレンスマニュアル by Bram Moolenaar
@@ -68,10 +68,10 @@ test_feedinput({string}) *test_feedinput()*
68
68
69
69
70
70
test_garbagecollect_now() *test_garbagecollect_now()*
71
- garbagecollect() とほぼ同じであるが、この関数はガベージコレク
72
- トを直ちに実行する 。この関数を実行する場合は、構造体が内部に存
73
- 在しないようにするために直接呼び出す必要がある 。また、この関数
74
- を呼び出す前に | v:testing | を設定する必要がある。 *E1142*
71
+ | garbagecollect() | とほぼ同じであるが、この関数はガベージコレ
72
+ クトを直ちに実行する 。この関数を実行する場合は、構造体が内部に
73
+ 存在しないようにするために直接呼び出す必要がある 。また、この関
74
+ 数を呼び出す前に | v:testing | を設定する必要がある。 *E1142*
75
75
これは、スタック上の変数が解放されるため、:def 関数から呼び出
76
76
された場合には動作しない。
77
77
@@ -367,6 +367,11 @@ test_null_string() *test_null_string()*
367
367
368
368
戻り値の型: | String |
369
369
370
+ test_null_tuple() *test_null_tuple()*
371
+ null の | Tuple | を返す。これはテストのみに使われる。
372
+
373
+ 戻り値の型: | Tuple |
374
+
370
375
test_option_not_set({name} ) *test_option_not_set()*
371
376
オプション {name} が設定されたことを示すフラグをリセットする。
372
377
したがって、それはまだデフォルト値を持っているように見える。次
Original file line number Diff line number Diff line change 1
- *testing.txt* For Vim version 9.1. Last change: 2024 Jul 18
1
+ *testing.txt* For Vim version 9.1. Last change: 2025 Mar 25
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -68,7 +68,7 @@ test_feedinput({string}) *test_feedinput()*
68
68
69
69
70
70
test_garbagecollect_now() *test_garbagecollect_now()*
71
- Like garbagecollect(), but executed right away. This must
71
+ Like | garbagecollect() | , but executed right away. This must
72
72
only be called directly to avoid any structure to exist
73
73
internally, and | v:testing | must have been set before calling
74
74
any function. *E1142*
@@ -364,6 +364,11 @@ test_null_string() *test_null_string()*
364
364
365
365
Return type: | String |
366
366
367
+ test_null_tuple() *test_null_tuple()*
368
+ Return a | Tuple | that is null. Only useful for testing.
369
+
370
+ Return type: | Tuple |
371
+
367
372
test_option_not_set({name} ) *test_option_not_set()*
368
373
Reset the flag that indicates option {name} was set. Thus it
369
374
looks like it still has the default value. Use like this: >
You can’t perform that action at this time.
0 commit comments