comparison src/vim.h @ 17632:5278e5a2a4e3 v8.1.1813

patch 8.1.1813: ATTENTION prompt for a preview popup window commit https://github.com/vim/vim/commit/2debf1c16b93f8693a785f675320d9e949c96a97 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 4 20:44:19 2019 +0200 patch 8.1.1813: ATTENTION prompt for a preview popup window Problem: ATTENTION prompt for a preview popup window. Solution: Close the popup window if aborting the buffer load. Avoid getting the ATTENTION dialog.
author Bram Moolenaar <Bram@vim.org>
date Sun, 04 Aug 2019 20:45:05 +0200
parents 506dd2efcbb2
children 1726c2db81bf
comparison
equal deleted inserted replaced
17631:1f3f6e1d69cf 17632:5278e5a2a4e3
712 #define BF_NEW_W 0x20 // Warned for BF_NEW and file created 712 #define BF_NEW_W 0x20 // Warned for BF_NEW and file created
713 #define BF_READERR 0x40 // got errors while reading the file 713 #define BF_READERR 0x40 // got errors while reading the file
714 #define BF_DUMMY 0x80 // dummy buffer, only used internally 714 #define BF_DUMMY 0x80 // dummy buffer, only used internally
715 #define BF_PRESERVED 0x100 // ":preserve" was used 715 #define BF_PRESERVED 0x100 // ":preserve" was used
716 #define BF_SYN_SET 0x200 // 'syntax' option was set 716 #define BF_SYN_SET 0x200 // 'syntax' option was set
717 #define BF_NO_SEA 0x400 // no swap_exists_action (ATTENTION prompt)
717 718
718 /* Mask to check for flags that prevent normal writing */ 719 /* Mask to check for flags that prevent normal writing */
719 #define BF_WRITE_MASK (BF_NOTEDITED + BF_NEW + BF_READERR) 720 #define BF_WRITE_MASK (BF_NOTEDITED + BF_NEW + BF_READERR)
720 721
721 /* 722 /*