comparison src/structs.h @ 659:d6a69271cb9a v7.0194

updated for version 7.0194
author vimboss
date Wed, 08 Feb 2006 09:20:24 +0000
parents e4fa26ce8769
children 9090f866cd57
comparison
equal deleted inserted replaced
658:903088c7a7c6 659:d6a69271cb9a
1083 # define B_SPELL(buf) ((buf)->b_spell) 1083 # define B_SPELL(buf) ((buf)->b_spell)
1084 #else 1084 #else
1085 # define B_SPELL(buf) (0) 1085 # define B_SPELL(buf) (0)
1086 #endif 1086 #endif
1087 1087
1088 #ifdef FEAT_QUICKFIX
1089 typedef struct qf_info_S qf_info_T; 1088 typedef struct qf_info_S qf_info_T;
1090 #endif
1091 1089
1092 /* 1090 /*
1093 * buffer: structure that holds information about one file 1091 * buffer: structure that holds information about one file
1094 * 1092 *
1095 * Several windows can share a single Buffer 1093 * Several windows can share a single Buffer
2146 char_u *arguments; 2144 char_u *arguments;
2147 #endif 2145 #endif
2148 } prt_settings_T; 2146 } prt_settings_T;
2149 2147
2150 #define PRINT_NUMBER_WIDTH 8 2148 #define PRINT_NUMBER_WIDTH 8
2149
2150 /*
2151 * Used for popup menu items.
2152 */
2153 typedef struct
2154 {
2155 char_u *pum_text; /* main menu text */
2156 char_u *pum_extra; /* extra menu text (may be truncated) */
2157 char_u *pum_info; /* extra info */
2158 } pumitem_T;