summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-03-19 22:15:26 +0000
committerBram Moolenaar <Bram@vim.org>2006-03-19 22:15:26 +0000
commit39f05630adc017f00ea551b827fd1d5ef21a0a3a (patch)
tree72e84a7bf71a46889d89f8ae8b6f5075b5784e65 /src/structs.h
parentc15ef30c08fa1f2c52053c6345ded69d6f2bc701 (diff)
downloadvim-git-39f05630adc017f00ea551b827fd1d5ef21a0a3a.tar.gz
updated for version 7.0229
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index 6abdc4149..907b1cc27 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -2283,3 +2283,11 @@ typedef struct
void *tn_search_ctx;
} tagname_T;
+/*
+ * Array indexes used for cptext argument of ins_compl_add().
+ */
+#define CPT_ABBR 0 /* "abbr" */
+#define CPT_MENU 1 /* "menu" */
+#define CPT_KIND 2 /* "kind" */
+#define CPT_INFO 3 /* "info" */
+#define CPT_COUNT 4 /* Number of entries */