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
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()
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
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()
You can’t perform that action at this time.
0 commit comments