comparison src/vim.h @ 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 3e2e1608efa4
children 55ccc2d353bd
comparison
equal deleted inserted replaced
15453:cdee6e827112 15454:1d2b5c016f17
1992 #define VV_TYPE_FLOAT 76 1992 #define VV_TYPE_FLOAT 76
1993 #define VV_TYPE_BOOL 77 1993 #define VV_TYPE_BOOL 77
1994 #define VV_TYPE_NONE 78 1994 #define VV_TYPE_NONE 78
1995 #define VV_TYPE_JOB 79 1995 #define VV_TYPE_JOB 79
1996 #define VV_TYPE_CHANNEL 80 1996 #define VV_TYPE_CHANNEL 80
1997 #define VV_TERMRFGRESP 81 1997 #define VV_TYPE_BLOB 81
1998 #define VV_TERMRBGRESP 82 1998 #define VV_TERMRFGRESP 82
1999 #define VV_TERMU7RESP 83 1999 #define VV_TERMRBGRESP 83
2000 #define VV_TERMSTYLERESP 84 2000 #define VV_TERMU7RESP 84
2001 #define VV_TERMBLINKRESP 85 2001 #define VV_TERMSTYLERESP 85
2002 #define VV_EVENT 86 2002 #define VV_TERMBLINKRESP 86
2003 #define VV_LEN 87 /* number of v: vars */ 2003 #define VV_EVENT 87
2004 #define VV_LEN 88 /* number of v: vars */
2004 2005
2005 /* used for v_number in VAR_SPECIAL */ 2006 /* used for v_number in VAR_SPECIAL */
2006 #define VVAL_FALSE 0L 2007 #define VVAL_FALSE 0L
2007 #define VVAL_TRUE 1L 2008 #define VVAL_TRUE 1L
2008 #define VVAL_NONE 2L 2009 #define VVAL_NONE 2L
2017 #define VAR_TYPE_FLOAT 5 2018 #define VAR_TYPE_FLOAT 5
2018 #define VAR_TYPE_BOOL 6 2019 #define VAR_TYPE_BOOL 6
2019 #define VAR_TYPE_NONE 7 2020 #define VAR_TYPE_NONE 7
2020 #define VAR_TYPE_JOB 8 2021 #define VAR_TYPE_JOB 8
2021 #define VAR_TYPE_CHANNEL 9 2022 #define VAR_TYPE_CHANNEL 9
2023 #define VAR_TYPE_BLOB 10
2022 2024
2023 #ifdef FEAT_CLIPBOARD 2025 #ifdef FEAT_CLIPBOARD
2024 2026
2025 /* VIM_ATOM_NAME is the older Vim-specific selection type for X11. Still 2027 /* VIM_ATOM_NAME is the older Vim-specific selection type for X11. Still
2026 * supported for when a mix of Vim versions is used. VIMENC_ATOM_NAME includes 2028 * supported for when a mix of Vim versions is used. VIMENC_ATOM_NAME includes