diff options
Diffstat (limited to 'src/nvim/insexpand.h')
-rw-r--r-- | src/nvim/insexpand.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/nvim/insexpand.h b/src/nvim/insexpand.h index b880e64ea4..8c05590b79 100644 --- a/src/nvim/insexpand.h +++ b/src/nvim/insexpand.h @@ -8,3 +8,12 @@ #ifdef INCLUDE_GENERATED_DECLARATIONS # include "insexpand.h.generated.h" #endif + +/// Array indexes used for cp_text[]. +typedef enum { + CPT_ABBR, ///< "abbr" + CPT_KIND, ///< "kind" + CPT_MENU, ///< "menu" + CPT_INFO, ///< "info" + CPT_COUNT, ///< Number of entries +} cpitem_T; |