comparison src/option.h @ 6949:1e621b31948b v7.4.793

patch 7.4.793 Problem: Can't specify when not to ring the bell. Solution: Add the 'belloff' option. (Christian Brabandt)
author Bram Moolenaar <bram@vim.org>
date Tue, 21 Jul 2015 17:53:25 +0200
parents 62ba356c2d4e
children 42717d048817
comparison
equal deleted inserted replaced
6948:50dfc96920a8 6949:1e621b31948b
336 # define BKC_NO 0x004 336 # define BKC_NO 0x004
337 # define BKC_BREAKSYMLINK 0x008 337 # define BKC_BREAKSYMLINK 0x008
338 # define BKC_BREAKHARDLINK 0x010 338 # define BKC_BREAKHARDLINK 0x010
339 EXTERN char_u *p_bdir; /* 'backupdir' */ 339 EXTERN char_u *p_bdir; /* 'backupdir' */
340 EXTERN char_u *p_bex; /* 'backupext' */ 340 EXTERN char_u *p_bex; /* 'backupext' */
341 EXTERN char_u *p_bo; /* 'belloff' */
342 EXTERN unsigned bo_flags;
343 # ifdef IN_OPTION_C
344 static char *(p_bo_values[]) = {"all", "backspace", "cursor", "complete",
345 "copy", "ctrlg", "error", "esc", "ex",
346 "hangul", "insertmode", "lang", "mess",
347 "showmatch", "operator", "register", "shell",
348 "spell", "wildmode", NULL};
349 # endif
350
351 /* values for the 'beepon' option */
352 #define BO_ALL 0x0001
353 #define BO_BS 0x0002
354 #define BO_CRSR 0x0004
355 #define BO_COMPL 0x0008
356 #define BO_COPY 0x0010
357 #define BO_CTRLG 0x0020
358 #define BO_ERROR 0x0040
359 #define BO_ESC 0x0080
360 #define BO_EX 0x0100
361 #define BO_HANGUL 0x0200
362 #define BO_IM 0x0400
363 #define BO_LANG 0x0800
364 #define BO_MESS 0x1000
365 #define BO_MATCH 0x2000
366 #define BO_OPER 0x4000
367 #define BO_REG 0x8000
368 #define BO_SH 0x10000
369 #define BO_SPELL 0x20000
370 #define BO_WILD 0x40000
371
341 #ifdef FEAT_WILDIGN 372 #ifdef FEAT_WILDIGN
342 EXTERN char_u *p_bsk; /* 'backupskip' */ 373 EXTERN char_u *p_bsk; /* 'backupskip' */
343 #endif 374 #endif
344 #ifdef FEAT_CRYPT 375 #ifdef FEAT_CRYPT
345 EXTERN char_u *p_cm; /* 'cryptmethod' */ 376 EXTERN char_u *p_cm; /* 'cryptmethod' */