comparison runtime/doc/if_ruby.txt @ 15454:1d2b5c016f17 v8.1.0735

patch 8.1.0735: cannot handle binary data commit https://github.com/vim/vim/commit/6e5ea8d2a995b32bbc5972edc4f827b959f2702f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 12 22:47:31 2019 +0100 patch 8.1.0735: cannot handle binary data Problem: Cannot handle binary data. Solution: Add the Blob type. (Yasuhiro Matsumoto, closes https://github.com/vim/vim/issues/3638)
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Jan 2019 23:00:06 +0100
parents 2f7e67dd088c
children fe57e4f0eac1
comparison
equal deleted inserted replaced
15453:cdee6e827112 15454:1d2b5c016f17
108 108
109 *ruby-message* 109 *ruby-message*
110 Vim::message({msg}) 110 Vim::message({msg})
111 Displays the message {msg}. 111 Displays the message {msg}.
112 112
113 *ruby-blob*
114 Vim::blob({arg})
115 Return Blob literal string from {arg}.
116
113 *ruby-set_option* 117 *ruby-set_option*
114 Vim::set_option({arg}) 118 Vim::set_option({arg})
115 Sets a vim option. {arg} can be any argument that the ":set" command 119 Sets a vim option. {arg} can be any argument that the ":set" command
116 accepts. Note that this means that no spaces are allowed in the 120 accepts. Note that this means that no spaces are allowed in the
117 argument! See |:set|. 121 argument! See |:set|.