neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

insexpand.h (458B)


      1 #pragma once
      2 
      3 #include "nvim/option_defs.h"  // IWYU pragma: keep
      4 #include "nvim/pos_defs.h"  // IWYU pragma: keep
      5 #include "nvim/types_defs.h"  // IWYU pragma: keep
      6 #include "nvim/vim_defs.h"  // IWYU pragma: keep
      7 
      8 #include "insexpand.h.generated.h"
      9 
     10 /// Array indexes used for cp_text[].
     11 typedef enum {
     12  CPT_ABBR,   ///< "abbr"
     13  CPT_KIND,   ///< "kind"
     14  CPT_MENU,   ///< "menu"
     15  CPT_INFO,   ///< "info"
     16  CPT_COUNT,  ///< Number of entries
     17 } cpitem_T;