comparison src/vim.h @ 7712:bce3b5ddb393 v7.4.1154

commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 23 19:46:28 2016 +0100 patch 7.4.1154 Problem: No support for JSON. Solution: Add jsonencode() and jsondecode(). Also add v:false, v:true, v:null and v:none.
author Christian Brabandt <cb@256bit.org>
date Sat, 23 Jan 2016 20:00:04 +0100
parents f04e2b6feea2
children 6069f43cea4e
comparison
equal deleted inserted replaced
7711:5fe266fb2a6e 7712:bce3b5ddb393
1894 #define VV_COMPLETED_ITEM 58 1894 #define VV_COMPLETED_ITEM 58
1895 #define VV_OPTION_NEW 59 1895 #define VV_OPTION_NEW 59
1896 #define VV_OPTION_OLD 60 1896 #define VV_OPTION_OLD 60
1897 #define VV_OPTION_TYPE 61 1897 #define VV_OPTION_TYPE 61
1898 #define VV_ERRORS 62 1898 #define VV_ERRORS 62
1899 #define VV_LEN 63 /* number of v: vars */ 1899 #define VV_FALSE 63
1900 #define VV_TRUE 64
1901 #define VV_NULL 65
1902 #define VV_NONE 66
1903 #define VV_LEN 67 /* number of v: vars */
1904
1905 /* used for v_number in VAR_SPECIAL */
1906 #define VVAL_FALSE 0L
1907 #define VVAL_TRUE 1L
1908 #define VVAL_NONE 2L
1909 #define VVAL_NULL 3L
1900 1910
1901 #ifdef FEAT_CLIPBOARD 1911 #ifdef FEAT_CLIPBOARD
1902 1912
1903 /* VIM_ATOM_NAME is the older Vim-specific selection type for X11. Still 1913 /* VIM_ATOM_NAME is the older Vim-specific selection type for X11. Still
1904 * supported for when a mix of Vim versions is used. VIMENC_ATOM_NAME includes 1914 * supported for when a mix of Vim versions is used. VIMENC_ATOM_NAME includes