comparison src/vim.h @ 1541:0d0bf7598dcb v7.1.256

updated for version 7.1-256
author vimboss
date Wed, 20 Feb 2008 11:24:52 +0000
parents cc4fe241baa3
children 437fb19625c9
comparison
equal deleted inserted replaced
1540:ca5b52e99385 1541:0d0bf7598dcb
718 #define EW_KEEPALL 0x10 /* keep all matches */ 718 #define EW_KEEPALL 0x10 /* keep all matches */
719 #define EW_SILENT 0x20 /* don't print "1 returned" from shell */ 719 #define EW_SILENT 0x20 /* don't print "1 returned" from shell */
720 #define EW_EXEC 0x40 /* executable files */ 720 #define EW_EXEC 0x40 /* executable files */
721 /* Note: mostly EW_NOTFOUND and EW_SILENT are mutually exclusive: EW_NOTFOUND 721 /* Note: mostly EW_NOTFOUND and EW_SILENT are mutually exclusive: EW_NOTFOUND
722 * is used when executing commands and EW_SILENT for interactive expanding. */ 722 * is used when executing commands and EW_SILENT for interactive expanding. */
723
724 /* Flags for find_file_*() functions. */
725 #define FINDFILE_FILE 0 /* only files */
726 #define FINDFILE_DIR 1 /* only directories */
727 #define FINDFILE_BOTH 2 /* files and directories */
723 728
724 #ifdef FEAT_VERTSPLIT 729 #ifdef FEAT_VERTSPLIT
725 # define W_WINCOL(wp) (wp->w_wincol) 730 # define W_WINCOL(wp) (wp->w_wincol)
726 # define W_WIDTH(wp) (wp->w_width) 731 # define W_WIDTH(wp) (wp->w_width)
727 # define W_ENDCOL(wp) (wp->w_wincol + wp->w_width) 732 # define W_ENDCOL(wp) (wp->w_wincol + wp->w_width)