aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorSean Dewar <seandewar@users.noreply.github.com>2021-07-29 12:26:13 +0100
committerSean Dewar <seandewar@users.noreply.github.com>2021-09-16 00:14:47 +0100
commit7e9ea083213c3eb195fbf206f12a3aac1fa29033 (patch)
tree7bf1d6dfaa12f6ce922e9fef37d2b2c92845b0d9 /runtime
parente88961943b85434ceebff6a31089c635ac39cd66 (diff)
downloadrneovim-7e9ea083213c3eb195fbf206f12a3aac1fa29033.tar.gz
rneovim-7e9ea083213c3eb195fbf206f12a3aac1fa29033.tar.bz2
rneovim-7e9ea083213c3eb195fbf206f12a3aac1fa29033.zip
feat(f_chansend): support Blob data argument
Diffstat (limited to 'runtime')
-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 a628b9d030..94be7b595e 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -3217,8 +3217,8 @@ chansend({id}, {data}) *chansend()*
written if the write succeeded, 0 otherwise.
See |channel-bytes| for more information.
- {data} may be a string, string convertible, or a list. If
- {data} is a list, the items will be joined by newlines; any
+ {data} may be a string, string convertible, |Blob|, or a list.
+ If {data} is a list, the items will be joined by newlines; any
newlines in an item will be sent as NUL. To send a final
newline, include a final empty string. Example: >
:call chansend(id, ["abc", "123\n456", ""])