aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2015-08-02 19:34:32 +0300
committerZyX <kp-pav@yandex.ru>2015-08-02 19:34:32 +0300
commit69a42f2d1d0892cfb926314cb990dfa89c75821a (patch)
treea3be2b063ddac96d7f175ed059001440f566e934
parentec95a58377e736aa6946e9ba0fdd6082ee5b491c (diff)
downloadrneovim-69a42f2d1d0892cfb926314cb990dfa89c75821a.tar.gz
rneovim-69a42f2d1d0892cfb926314cb990dfa89c75821a.tar.bz2
rneovim-69a42f2d1d0892cfb926314cb990dfa89c75821a.zip
documentation: Add {Nvim} tag to new functions
-rw-r--r--runtime/doc/eval.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index aee3676e12..ba8948197e 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -4621,7 +4621,7 @@ mode([expr]) Return a string that indicates the current mode.
"c" or "n".
Also see |visualmode()|.
-msgpackdump({list}) *msgpackdump()*
+msgpackdump({list}) {Nvim} *msgpackdump()*
Convert a list of VimL objects to msgpack. Returned value is
|readfile()|-style list. Example: >
call writefile(msgpackdump([{}]), 'fname.mpack', 'b')
@@ -4636,7 +4636,7 @@ msgpackdump({list}) *msgpackdump()*
4. Other strings are always dumped as BIN strings.
5. Points 3. and 4. do not apply to |msgpack-special-dict|s.
-msgpackparse({list}) *msgpackparse()*
+msgpackparse({list}) {Nvim} *msgpackparse()*
Convert a |readfile()|-style list to a list of VimL objects.
Example: >
let fname = expand('~/.nvim/shada/main.shada')