aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2016-01-06 22:40:23 +0300
committerZyX <kp-pav@yandex.ru>2016-01-07 00:54:57 +0300
commitbd4ca22cf06f832ccda432733498f00e0af77eaa (patch)
tree57a358e8ba8129637106ea4cb9578acd5070fd94
parentefaf76e6238c7b109676575b41f637374f896cb8 (diff)
downloadrneovim-bd4ca22cf06f832ccda432733498f00e0af77eaa.tar.gz
rneovim-bd4ca22cf06f832ccda432733498f00e0af77eaa.tar.bz2
rneovim-bd4ca22cf06f832ccda432733498f00e0af77eaa.zip
documentation: Update documentation
-rw-r--r--runtime/doc/eval.txt6
1 files changed, 5 insertions, 1 deletions
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: >