runtime(doc): some Blob functions are missing from blob-functions
Commit:
https://github.com/vim/vim/commit/cb89033630865290f41ffec0948529ada1daaff3
Author: Hirohito Higashi <
h.eas...@gmail.com>
Date: Tue Aug 25 18:53:43 2026 +0000
runtime(doc): some Blob functions are missing from blob-functions
blob2str(), str2blob(), base64_encode() and base64_decode() are only
listed under string-functions and channel-functions. Also use "Blob"
consistently and say "bytes" instead of "numbers" for reverse().
closes: #21148
Co-Authored-By: Claude Opus 5 (1M context) <
nor...@anthropic.com>
Signed-off-by: Christian Brabandt <
c...@256bit.org>
diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt
index c1ecf81b2..05ca990d0 100644
--- a/runtime/doc/usr_41.txt
+++ b/runtime/doc/usr_41.txt
@@ -1,4 +1,4 @@
-*usr_41.txt* For Vim version 9.2. Last change: 2026 Aug 18
+*usr_41.txt* For Vim version 9.2. Last change: 2026 Aug 25
VIM USER MANUAL by Bram Moolenaar
@@ -936,9 +936,13 @@ Blob manipulation: *blob-functions*
foreach() apply function to Blob bytes
reduce() reduce a Blob to a value
slice() take a slice of a Blob
- blob2list() get a list of numbers from a blob
- list2blob() get a blob from a list of numbers
- reverse() reverse the order of numbers in a blob
+ blob2list() get a list of numbers from a Blob
+ list2blob() get a Blob from a list of numbers
+ blob2str() get a list of strings from a Blob
+ str2blob() get a Blob from a list of strings
+ base64_encode() encode a Blob into a base64 String
+ base64_decode() decode a base64 String into a Blob
+ reverse() reverse the order of bytes in a Blob
string() String representation of a Blob
index() index of a value in a Blob
indexof() index in a Blob where an expression is true