Skip to content

Commit 620f0e5

Browse files
authored
Merge pull request #2170 from h-east/update-builtin
Update builtin.{txt,jax}
2 parents a65bc81 + 94261d9 commit 620f0e5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/builtin.jax

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*builtin.txt* For Vim バージョン 9.1. Last change: 2025 Jul 14
1+
*builtin.txt* For Vim バージョン 9.1. Last change: 2025 Jul 17
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -1339,7 +1339,7 @@ base64_encode({blob}) *base64_encode()*
13391339
" バイナリファイルの内容をエンコードする
13401340
echo base64_encode(readblob('somefile.bin'))
13411341
" 文字列をエンコードする
1342-
echo base64_encode(str2blob([somestr]))
1342+
echo base64_encode(str2blob(somestr->split("\n")))
13431343
<
13441344
|method| としても使用できる: >
13451345
GetBinaryData()->base64_encode()

en/builtin.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*builtin.txt* For Vim version 9.1. Last change: 2025 Jul 14
1+
*builtin.txt* For Vim version 9.1. Last change: 2025 Jul 17
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1268,7 +1268,7 @@ base64_encode({blob}) *base64_encode()*
12681268
" Encode the contents of a binary file
12691269
echo base64_encode(readblob('somefile.bin'))
12701270
" Encode a string
1271-
echo base64_encode(str2blob([somestr]))
1271+
echo base64_encode(str2blob(somestr->split("\n")))
12721272
<
12731273
Can also be used as a |method|: >
12741274
GetBinaryData()->base64_encode()

0 commit comments

Comments
 (0)