diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-08-26 16:41:14 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-08-26 16:41:14 +0100 |
commit | 074fbd413172edc6f4936296a28bf8fd5cdfa38b (patch) | |
tree | 1c1f0e8682516840548e2b317e4a929c53ff9250 /src/feature.h | |
parent | c361842f1479a7f7f3e65bfb0e188f2e5d38336e (diff) | |
download | vim-git-074fbd413172edc6f4936296a28bf8fd5cdfa38b.tar.gz |
patch 9.0.0278: the +wildignore feature is nearly always availablev9.0.0278
Problem: The +wildignore feature is nearly always available.
Solution: Graduate +wildignore for consistency.
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/feature.h b/src/feature.h index bffd80a91..529ada57a 100644 --- a/src/feature.h +++ b/src/feature.h @@ -118,6 +118,7 @@ * +textobjects Text objects: "vaw", "das", etc. * +file_in_path "gf" and "<cfile>" commands. * +path_extra up/downwards searching in 'path' and 'tags'. + * +wildignore 'wildignore' and 'backupskip' options * * Obsolete: * +tag_old_static Old style static tags: "file:tag file ..". @@ -285,7 +286,7 @@ /* * +timers timer_start() */ -#if defined(FEAT_RELTIME) && (defined(UNIX) || defined(MSWIN) || defined(VMS) ) +#if defined(FEAT_RELTIME) && (defined(UNIX) || defined(MSWIN) || defined(VMS)) # define FEAT_TIMERS #endif @@ -338,14 +339,6 @@ #endif /* - * +wildignore 'wildignore' and 'backupskip' options - * Needed for Unix to make "crontab -e" work. - */ -#if defined(FEAT_NORMAL) || defined(UNIX) -# define FEAT_WILDIGN -#endif - -/* * +wildmenu 'wildmenu' option */ #if defined(FEAT_NORMAL) |