From ab82369c8eb1bf6a58f848e7cb3fb3275d13ed8b Mon Sep 17 00:00:00 2001 From: Sean Dewar Date: Mon, 2 Aug 2021 18:59:55 +0100 Subject: feat(json): convert Blobs to array of byte values Similiar to how Vim does it, but to be consistent with how Nvim encodes lists, add a space after every comma. --- runtime/doc/eval.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime') diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index b9eeec9a6b..165d48eb42 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -6002,6 +6002,7 @@ json_encode({expr}) *json_encode()* surrogate pairs (such strings are not valid UTF-8 strings). Non-printable characters are converted into "\u1234" escapes or special escapes like "\t", other are dumped as-is. + |Blob|s are converted to arrays of the individual bytes. keys({dict}) *keys()* Return a |List| with all the keys of {dict}. The |List| is in -- cgit