summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-07-27 17:31:47 +0200
committerBram Moolenaar <Bram@vim.org>2011-07-27 17:31:47 +0200
commit0b573a58e63f43f462e6824080c633bbd1a8a5dd (patch)
tree12c949bd62bf37417834b51a1fd26c0c05d838f7 /src/vim.h
parenta171162356bd7f8b11f9af1061591316fc8dad3d (diff)
downloadvim-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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vim.h b/src/vim.h
index a1a970819..127387aa0 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -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. */