From bd4ca22cf06f832ccda432733498f00e0af77eaa Mon Sep 17 00:00:00 2001 From: ZyX Date: Wed, 6 Jan 2016 22:40:23 +0300 Subject: [PATCH] documentation: Update documentation --- runtime/doc/eval.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 8864909e71..f70968de01 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -4712,13 +4712,17 @@ msgpackdump({list}) {Nvim} *msgpackdump()* (dictionary with zero items is represented by 0x80 byte in messagepack). - Limitations: + Limitations: *E951* *E952* 1. |Funcref|s cannot be dumped. 2. Containers that reference themselves cannot be dumped. 3. Dictionary keys are always dumped as STR strings. 4. Other strings are always dumped as BIN strings. 5. Points 3. and 4. do not apply to |msgpack-special-dict|s. + Note: error messages may use |msgpack#string()| function for + showing where error occurred. In case it is not + available it falls back to |string()|. + msgpackparse({list}) {Nvim} *msgpackparse()* Convert a |readfile()|-style list to a list of VimL objects. Example: >