From 94261d998fbe88722073ce02d879e7530d407610 Mon Sep 17 00:00:00 2001 From: h-east Date: Sat, 19 Jul 2025 11:56:22 +0900 Subject: [PATCH] Update builtin.{txt,jax} --- doc/builtin.jax | 4 ++-- en/builtin.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/builtin.jax b/doc/builtin.jax index 3be378edc..d9794aee0 100644 --- a/doc/builtin.jax +++ b/doc/builtin.jax @@ -1,4 +1,4 @@ -*builtin.txt* For Vim バージョン 9.1. Last change: 2025 Jul 14 +*builtin.txt* For Vim バージョン 9.1. Last change: 2025 Jul 17 VIMリファレンスマニュアル by Bram Moolenaar @@ -1339,7 +1339,7 @@ base64_encode({blob}) *base64_encode()* " バイナリファイルの内容をエンコードする echo base64_encode(readblob('somefile.bin')) " 文字列をエンコードする - echo base64_encode(str2blob([somestr])) + echo base64_encode(str2blob(somestr->split("\n"))) < |method| としても使用できる: > GetBinaryData()->base64_encode() diff --git a/en/builtin.txt b/en/builtin.txt index 5e395e6d7..e1847b1d3 100644 --- a/en/builtin.txt +++ b/en/builtin.txt @@ -1,4 +1,4 @@ -*builtin.txt* For Vim version 9.1. Last change: 2025 Jul 14 +*builtin.txt* For Vim version 9.1. Last change: 2025 Jul 17 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1268,7 +1268,7 @@ base64_encode({blob}) *base64_encode()* " Encode the contents of a binary file echo base64_encode(readblob('somefile.bin')) " Encode a string - echo base64_encode(str2blob([somestr])) + echo base64_encode(str2blob(somestr->split("\n"))) < Can also be used as a |method|: > GetBinaryData()->base64_encode()