Skip to content

Commit aab692a

Browse files
authored
Merge pull request #2070 from h-east/update-build
Update builtin.{txt,jax}
2 parents 1c652bb + d526ded commit aab692a

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

doc/builtin.jax

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*builtin.txt* For Vim バージョン 9.1. Last change: 2025 Apr 27
1+
*builtin.txt* For Vim バージョン 9.1. Last change: 2025 May 09
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -208,9 +208,9 @@ filter({expr1}, {expr2}) リスト/辞書/Blob/文字列
208208
{expr2} が0となる要素を {expr1} からと
209209
り除く
210210
finddir({name} [, {path} [, {count}]])
211-
文字列 {path}からディレクトリ{name}を探す
212211
findfile({name} [, {path} [, {count}]])
213-
文字列 {path}からファイル{name}を探す
212+
文字列/リスト {path} からディレクトリ/ファイル
213+
{name} を探す
214214
flatten({list} [, {maxdepth}]) リスト リスト {list} を {maxdepth} の深さまで
215215
平坦化する
216216
flattennew({list} [, {maxdepth}])
@@ -3174,7 +3174,7 @@ feedkeys({string} [, {mode}]) *feedkeys()*
31743174
|method| としても使用できる: >
31753175
GetInput()->feedkeys()
31763176
<
3177-
戻り値の型: |String| または list<string>。{list} による
3177+
戻り値の型: |Number|
31783178

31793179

31803180
filecopy({from}, {to}) *filecopy()*
@@ -4931,7 +4931,7 @@ getreg([{regname} [, 1 [, {list}]]]) *getreg()*
49314931
|method| としても使用できる: >
49324932
GetRegname()->getreg()
49334933
<
4934-
戻り値の型: |String|
4934+
戻り値の型: |String| または list<string>。{list} による
49354935

49364936

49374937
getreginfo([{regname}]) *getreginfo()*
@@ -9642,6 +9642,7 @@ setcursorcharpos({list})
96429642
|method| としても使用できる: >
96439643
GetCursorPos()->setcursorcharpos()
96449644
<
9645+
位置を設定できた場合は 0 を返し、それ以外の場合は -1 を返す。
96459646
戻り値の型: |Number|
96469647

96479648

en/builtin.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*builtin.txt* For Vim version 9.1. Last change: 2025 Apr 27
1+
*builtin.txt* For Vim version 9.1. Last change: 2025 May 09
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -194,9 +194,8 @@ filter({expr1}, {expr2}) List/Dict/Blob/String
194194
remove items from {expr1} where
195195
{expr2} is 0
196196
finddir({name} [, {path} [, {count}]])
197-
String find directory {name} in {path}
198197
findfile({name} [, {path} [, {count}]])
199-
String find file {name} in {path}
198+
String/List find dir/file {name} in {path}
200199
flatten({list} [, {maxdepth}]) List flatten {list} up to {maxdepth} levels
201200
flattennew({list} [, {maxdepth}])
202201
List flatten a copy of {list}
@@ -3167,7 +3166,7 @@ feedkeys({string} [, {mode}]) *feedkeys()*
31673166
Can also be used as a |method|: >
31683167
GetInput()->feedkeys()
31693168
<
3170-
Return type: |String| or list<string> depending on {list}
3169+
Return type: |Number|
31713170

31723171

31733172
filecopy({from}, {to}) *filecopy()*
@@ -4962,7 +4961,7 @@ getreg([{regname} [, 1 [, {list}]]]) *getreg()*
49624961
Can also be used as a |method|: >
49634962
GetRegname()->getreg()
49644963
<
4965-
Return type: |String|
4964+
Return type: |String| or list<string> depending on {list}
49664965

49674966

49684967
getreginfo([{regname}]) *getreginfo()*
@@ -9828,6 +9827,7 @@ setcursorcharpos({list})
98289827
Can also be used as a |method|: >
98299828
GetCursorPos()->setcursorcharpos()
98309829
<
9830+
Returns 0 when the position could be set, -1 otherwise.
98319831
Return type: |Number|
98329832

98339833

0 commit comments

Comments
 (0)