diff options
author | bfredl <bjorn.linse@gmail.com> | 2024-06-27 18:45:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-27 18:45:18 +0200 |
commit | 46187117c9464dd6c09eae8e47bb279d72a01038 (patch) | |
tree | cffb3d6a5b9875893ae4de6457a656542856dc93 /runtime/lua/vim/_meta/vimfn.lua | |
parent | 724d1110b1e4699a34f489e9cdb2d25098746499 (diff) | |
parent | bda63d5b97dfb333de6f4bd757dbb978906062a2 (diff) | |
download | rneovim-46187117c9464dd6c09eae8e47bb279d72a01038.tar.gz rneovim-46187117c9464dd6c09eae8e47bb279d72a01038.tar.bz2 rneovim-46187117c9464dd6c09eae8e47bb279d72a01038.zip |
Merge pull request #29483 from bfredl/nonbinary
refactor(typval)!: remove binary distinction of binary and nonbinary strings
Diffstat (limited to 'runtime/lua/vim/_meta/vimfn.lua')
-rw-r--r-- | runtime/lua/vim/_meta/vimfn.lua | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/runtime/lua/vim/_meta/vimfn.lua b/runtime/lua/vim/_meta/vimfn.lua index 11dcbc010b..9d4cc825ec 100644 --- a/runtime/lua/vim/_meta/vimfn.lua +++ b/runtime/lua/vim/_meta/vimfn.lua @@ -6177,12 +6177,7 @@ function vim.fn.msgpackdump(list, type) end --- C parser does not support such values. --- float |Float|. This value cannot possibly appear in --- |msgpackparse()| output. ---- string |readfile()|-style list of strings. This value will ---- appear in |msgpackparse()| output if string contains ---- zero byte or if string is a mapping key and mapping is ---- being represented as special dictionary for other ---- reasons. ---- binary |String|, or |Blob| if binary string contains zero +--- string |String|, or |Blob| if binary string contains zero --- byte. This value cannot appear in |msgpackparse()| --- output since blobs were introduced. --- array |List|. This value cannot appear in |msgpackparse()| |