Skip to content

Update builtin.{txt,jax} #2170

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/builtin.jax
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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()
Expand Down
4 changes: 2 additions & 2 deletions en/builtin.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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()
Expand Down