diff options
author | Blaž Hrastnik <blaz@mxxn.io> | 2020-04-29 00:27:14 +0900 |
---|---|---|
committer | Blaž Hrastnik <blaz@mxxn.io> | 2020-04-29 11:15:49 +0900 |
commit | c477b19bdca0cc57e08f5fb93f647767ea84dd3e (patch) | |
tree | 8a931968ac4d76fd8684e829a9030303f0fb3a36 /src/nvim/edit.h | |
parent | c7d3630e214012667e855c30cde2808a5fe59650 (diff) | |
download | rneovim-c477b19bdca0cc57e08f5fb93f647767ea84dd3e.tar.gz rneovim-c477b19bdca0cc57e08f5fb93f647767ea84dd3e.tar.bz2 rneovim-c477b19bdca0cc57e08f5fb93f647767ea84dd3e.zip |
vim-patch:8.2.0084: complete item "user_data" can only be a string
Problem: Complete item "user_data" can only be a string.
Solution: Accept any type of variable. (closes vim/vim#5412)
https://github.com/vim/vim/commit/0892832bb6c7e322fcae8560eaad5a8140ee4a06
Diffstat (limited to 'src/nvim/edit.h')
-rw-r--r-- | src/nvim/edit.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/edit.h b/src/nvim/edit.h index 92dab37a70..09f401ee82 100644 --- a/src/nvim/edit.h +++ b/src/nvim/edit.h @@ -10,8 +10,7 @@ #define CPT_MENU 1 // "menu" #define CPT_KIND 2 // "kind" #define CPT_INFO 3 // "info" -#define CPT_USER_DATA 4 // "user data" -#define CPT_COUNT 5 // Number of entries +#define CPT_COUNT 4 // Number of entries // values for cp_flags typedef enum { |