comparison src/option.h @ 692:a28f83d37113

updated for version 7.0208
author vimboss
date Mon, 27 Feb 2006 00:08:02 +0000
parents bcd2edc4539e
children 07d199fe02ed
comparison
equal deleted inserted replaced
691:8106f3da02d0 692:a28f83d37113
7 */ 7 */
8 8
9 /* 9 /*
10 * option.h: definition of global variables for settable options 10 * option.h: definition of global variables for settable options
11 */ 11 */
12
13 #ifndef EXTERN
14 # define EXTERN extern
15 # define INIT(x)
16 #else
17 # ifndef INIT
18 # define INIT(x) x
19 # endif
20 #endif
21 12
22 /* 13 /*
23 * Default values for 'errorformat'. 14 * Default values for 'errorformat'.
24 * The "%f|%l| %m" one is used for when the contents of the quickfix window is 15 * The "%f|%l| %m" one is used for when the contents of the quickfix window is
25 * written to a file. 16 * written to a file.
377 EXTERN char_u *p_cedit; /* 'cedit' */ 368 EXTERN char_u *p_cedit; /* 'cedit' */
378 EXTERN long p_cwh; /* 'cmdwinheight' */ 369 EXTERN long p_cwh; /* 'cmdwinheight' */
379 #endif 370 #endif
380 #ifdef FEAT_CLIPBOARD 371 #ifdef FEAT_CLIPBOARD
381 EXTERN char_u *p_cb; /* 'clipboard' */ 372 EXTERN char_u *p_cb; /* 'clipboard' */
382 EXTERN int clip_unnamed INIT(= FALSE);
383 EXTERN int clip_autoselect INIT(= FALSE);
384 EXTERN int clip_autoselectml INIT(= FALSE);
385 EXTERN regprog_T *clip_exclude_prog INIT(= NULL);
386 #endif 373 #endif
387 EXTERN long p_ch; /* 'cmdheight' */ 374 EXTERN long p_ch; /* 'cmdheight' */
388 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) 375 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
389 EXTERN int p_confirm; /* 'confirm' */ 376 EXTERN int p_confirm; /* 'confirm' */
390 #endif 377 #endif
513 #ifdef FEAT_MOUSESHAPE 500 #ifdef FEAT_MOUSESHAPE
514 EXTERN char_u *p_mouseshape; /* 'mouseshape' */ 501 EXTERN char_u *p_mouseshape; /* 'mouseshape' */
515 #endif 502 #endif
516 #if defined(FEAT_GUI) 503 #if defined(FEAT_GUI)
517 EXTERN char_u *p_go; /* 'guioptions' */ 504 EXTERN char_u *p_go; /* 'guioptions' */
505 #endif
506 #if defined(FEAT_GUI_TABLINE)
518 EXTERN char_u *p_gtl; /* 'guitablabel' */ 507 EXTERN char_u *p_gtl; /* 'guitablabel' */
519 #endif 508 #endif
520 EXTERN char_u *p_hf; /* 'helpfile' */ 509 EXTERN char_u *p_hf; /* 'helpfile' */
521 #ifdef FEAT_WINDOWS 510 #ifdef FEAT_WINDOWS
522 EXTERN long p_hh; /* 'helpheight' */ 511 EXTERN long p_hh; /* 'helpheight' */