File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- *builtin.txt* For Vim バージョン 9.1. Last change: 2025 Jul 14
1
+ *builtin.txt* For Vim バージョン 9.1. Last change: 2025 Jul 17
2
2
3
3
4
4
VIMリファレンスマニュアル by Bram Moolenaar
@@ -1339,7 +1339,7 @@ base64_encode({blob}) *base64_encode()*
1339
1339
" バイナリファイルの内容をエンコードする
1340
1340
echo base64_encode(readblob('somefile.bin'))
1341
1341
" 文字列をエンコードする
1342
- echo base64_encode(str2blob([ somestr] ))
1342
+ echo base64_encode(str2blob(somestr->split("\n") ))
1343
1343
<
1344
1344
|method| としても使用できる: >
1345
1345
GetBinaryData()->base64_encode()
Original file line number Diff line number Diff line change 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
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1268,7 +1268,7 @@ base64_encode({blob}) *base64_encode()*
1268
1268
" Encode the contents of a binary file
1269
1269
echo base64_encode(readblob('somefile.bin'))
1270
1270
" Encode a string
1271
- echo base64_encode(str2blob([ somestr] ))
1271
+ echo base64_encode(str2blob(somestr->split("\n") ))
1272
1272
<
1273
1273
Can also be used as a | method | : >
1274
1274
GetBinaryData()->base64_encode()
You can’t perform that action at this time.
0 commit comments