Mercurial > vim
comparison src/structs.h @ 681:9364d114ed8d v7.0204
updated for version 7.0204
author | vimboss |
---|---|
date | Wed, 22 Feb 2006 21:25:37 +0000 |
parents | 5b101ff9d4c4 |
children | a39b8af64334 |
comparison
equal
deleted
inserted
replaced
680:5b101ff9d4c4 | 681:9364d114ed8d |
---|---|
1322 #ifdef FEAT_FIND_ID | 1322 #ifdef FEAT_FIND_ID |
1323 char_u *b_p_def; /* 'define' local value */ | 1323 char_u *b_p_def; /* 'define' local value */ |
1324 char_u *b_p_inc; /* 'include' */ | 1324 char_u *b_p_inc; /* 'include' */ |
1325 # ifdef FEAT_EVAL | 1325 # ifdef FEAT_EVAL |
1326 char_u *b_p_inex; /* 'includeexpr' */ | 1326 char_u *b_p_inex; /* 'includeexpr' */ |
1327 long_u b_p_inex_flags; /* flags for 'includeexpr' */ | |
1327 # endif | 1328 # endif |
1328 #endif | 1329 #endif |
1329 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL) | 1330 #if defined(FEAT_CINDENT) && defined(FEAT_EVAL) |
1330 char_u *b_p_inde; /* 'indentexpr' */ | 1331 char_u *b_p_inde; /* 'indentexpr' */ |
1332 long_u b_p_inde_flags; /* flags for 'indentexpr' */ | |
1331 char_u *b_p_indk; /* 'indentkeys' */ | 1333 char_u *b_p_indk; /* 'indentkeys' */ |
1332 #endif | 1334 #endif |
1333 #if defined(FEAT_EVAL) | 1335 #if defined(FEAT_EVAL) |
1334 char_u *b_p_fex; /* 'formatexpr' */ | 1336 char_u *b_p_fex; /* 'formatexpr' */ |
1337 long_u b_p_fex_flags; /* flags for 'formatexpr' */ | |
1335 #endif | 1338 #endif |
1336 #ifdef FEAT_CRYPT | 1339 #ifdef FEAT_CRYPT |
1337 char_u *b_p_key; /* 'key' */ | 1340 char_u *b_p_key; /* 'key' */ |
1338 #endif | 1341 #endif |
1339 char_u *b_p_kp; /* 'keywordprg' */ | 1342 char_u *b_p_kp; /* 'keywordprg' */ |
1824 * this window, w_allbuf_opt is for all buffers in this window. | 1827 * this window, w_allbuf_opt is for all buffers in this window. |
1825 */ | 1828 */ |
1826 winopt_T w_onebuf_opt; | 1829 winopt_T w_onebuf_opt; |
1827 winopt_T w_allbuf_opt; | 1830 winopt_T w_allbuf_opt; |
1828 | 1831 |
1832 /* A few options have local flags for P_INSECURE. */ | |
1833 #ifdef FEAT_STL_OPT | |
1834 long_u w_p_stl_flags; /* flags for 'statusline' */ | |
1835 #endif | |
1836 #ifdef FEAT_EVAL | |
1837 long_u w_p_fde_flags; /* flags for 'foldexpr' */ | |
1838 long_u w_p_fdt_flags; /* flags for 'foldtext' */ | |
1839 #endif | |
1840 | |
1829 /* transform a pointer to a "onebuf" option into a "allbuf" option */ | 1841 /* transform a pointer to a "onebuf" option into a "allbuf" option */ |
1830 #define GLOBAL_WO(p) ((char *)p + sizeof(winopt_T)) | 1842 #define GLOBAL_WO(p) ((char *)p + sizeof(winopt_T)) |
1831 | 1843 |
1832 #ifdef FEAT_SCROLLBIND | 1844 #ifdef FEAT_SCROLLBIND |
1833 long w_scbind_pos; | 1845 long w_scbind_pos; |