diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-07-27 17:31:47 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-07-27 17:31:47 +0200 |
commit | 0b573a58e63f43f462e6824080c633bbd1a8a5dd (patch) | |
tree | 12c949bd62bf37417834b51a1fd26c0c05d838f7 /src/vim.h | |
parent | a171162356bd7f8b11f9af1061591316fc8dad3d (diff) | |
download | vim-git-0b573a58e63f43f462e6824080c633bbd1a8a5dd.tar.gz |
updated for version 7.3.264v7.3.264
Problem: When the current directory name contains wildcard characters, such
as "foo[with]bar", the tags file can't be found. (Jeremy
Erickson)
Solution: When searching for matching files also match without expanding
wildcards. This is a bit of a hack.
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -816,6 +816,7 @@ extern char *(*dyn_libintl_textdomain)(const char *domainname); #define EW_PATH 0x80 /* search in 'path' too */ #define EW_ICASE 0x100 /* ignore case */ #define EW_NOERROR 0x200 /* no error for bad regexp */ +#define EW_NOTWILD 0x400 /* add match with literal name if exists */ /* Note: mostly EW_NOTFOUND and EW_SILENT are mutually exclusive: EW_NOTFOUND * is used when executing commands and EW_SILENT for interactive expanding. */ |