comparison src/option.h @ 28439:16bd027b039e v8.2.4744

patch 8.2.4744: a terminal window can't use the bell Commit: https://github.com/vim/vim/commit/77771d33f44bfb9f75eb857bd2f2bb4c2860cac3 Author: LemonBoy <thatlemon@gmail.com> Date: Wed Apr 13 11:47:25 2022 +0100 patch 8.2.4744: a terminal window can't use the bell Problem: A terminal window can't use the bell. Solution: Add bell support for the terminal window. (closes https://github.com/vim/vim/issues/10178)
author Bram Moolenaar <Bram@vim.org>
date Wed, 13 Apr 2022 13:00:06 +0200
parents 8bc8071928ed
children 38698deeda58
comparison
equal deleted inserted replaced
28438:04a92ed295c3 28439:16bd027b039e
449 #define BO_MATCH 0x2000 449 #define BO_MATCH 0x2000
450 #define BO_OPER 0x4000 450 #define BO_OPER 0x4000
451 #define BO_REG 0x8000 451 #define BO_REG 0x8000
452 #define BO_SH 0x10000 452 #define BO_SH 0x10000
453 #define BO_SPELL 0x20000 453 #define BO_SPELL 0x20000
454 #define BO_WILD 0x40000 454 #define BO_TERM 0x40000
455 #define BO_WILD 0x80000
455 456
456 #ifdef FEAT_WILDIGN 457 #ifdef FEAT_WILDIGN
457 EXTERN char_u *p_bsk; // 'backupskip' 458 EXTERN char_u *p_bsk; // 'backupskip'
458 #endif 459 #endif
459 #ifdef FEAT_CRYPT 460 #ifdef FEAT_CRYPT