comparison runtime/doc/eval.txt @ 10563:bac9cec298ed v8.0.0171

patch 8.0.0171: JS style JSON does not support single quotes commit https://github.com/vim/vim/commit/ee142add229cbcd58bc76d59f23e02517df14379 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 11 21:50:08 2017 +0100 patch 8.0.0171: JS style JSON does not support single quotes Problem: JS style JSON does not support single quotes. Solution: Allow for single quotes. (Yasuhiro Matsumoto, closes https://github.com/vim/vim/issues/1371)
author Christian Brabandt <cb@256bit.org>
date Wed, 11 Jan 2017 22:00:04 +0100
parents 74effdaa369e
children 9a75c8a1b8b1
comparison
equal deleted inserted replaced
10562:9b1ca542ca91 10563:bac9cec298ed
5227 The opposite function is |split()|. 5227 The opposite function is |split()|.
5228 5228
5229 js_decode({string}) *js_decode()* 5229 js_decode({string}) *js_decode()*
5230 This is similar to |json_decode()| with these differences: 5230 This is similar to |json_decode()| with these differences:
5231 - Object key names do not have to be in quotes. 5231 - Object key names do not have to be in quotes.
5232 - Strings can be in single quotes.
5232 - Empty items in an array (between two commas) are allowed and 5233 - Empty items in an array (between two commas) are allowed and
5233 result in v:none items. 5234 result in v:none items.
5234 5235
5235 js_encode({expr}) *js_encode()* 5236 js_encode({expr}) *js_encode()*
5236 This is similar to |json_encode()| with these differences: 5237 This is similar to |json_encode()| with these differences: