comparison src/feature.h @ 29879:77141226eb2e v9.0.0278

patch 9.0.0278: the +wildignore feature is nearly always available Commit: https://github.com/vim/vim/commit/074fbd413172edc6f4936296a28bf8fd5cdfa38b Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 26 16:41:14 2022 +0100 patch 9.0.0278: the +wildignore feature is nearly always available Problem: The +wildignore feature is nearly always available. Solution: Graduate +wildignore for consistency.
author Bram Moolenaar <Bram@vim.org>
date Fri, 26 Aug 2022 17:45:03 +0200
parents 62350f19d4ed
children 0cc9a3001717
comparison
equal deleted inserted replaced
29878:f920c08c7914 29879:77141226eb2e
116 * +cindent C code indenting (From Eric Fischer). 116 * +cindent C code indenting (From Eric Fischer).
117 * +smartindent smart C code indenting when the 'si' option is set. 117 * +smartindent smart C code indenting when the 'si' option is set.
118 * +textobjects Text objects: "vaw", "das", etc. 118 * +textobjects Text objects: "vaw", "das", etc.
119 * +file_in_path "gf" and "<cfile>" commands. 119 * +file_in_path "gf" and "<cfile>" commands.
120 * +path_extra up/downwards searching in 'path' and 'tags'. 120 * +path_extra up/downwards searching in 'path' and 'tags'.
121 * +wildignore 'wildignore' and 'backupskip' options
121 * 122 *
122 * Obsolete: 123 * Obsolete:
123 * +tag_old_static Old style static tags: "file:tag file ..". 124 * +tag_old_static Old style static tags: "file:tag file ..".
124 * Support was removed in 8.1.1093. 125 * Support was removed in 8.1.1093.
125 * +farsi Farsi (Persian language) Keymap support. 126 * +farsi Farsi (Persian language) Keymap support.
283 #endif 284 #endif
284 285
285 /* 286 /*
286 * +timers timer_start() 287 * +timers timer_start()
287 */ 288 */
288 #if defined(FEAT_RELTIME) && (defined(UNIX) || defined(MSWIN) || defined(VMS) ) 289 #if defined(FEAT_RELTIME) && (defined(UNIX) || defined(MSWIN) || defined(VMS))
289 # define FEAT_TIMERS 290 # define FEAT_TIMERS
290 #endif 291 #endif
291 292
292 /* 293 /*
293 * Insert mode completion with 'completefunc'. 294 * Insert mode completion with 'completefunc'.
333 * and byte2line(). 334 * and byte2line().
334 * Note: Required for Macintosh. 335 * Note: Required for Macintosh.
335 */ 336 */
336 #ifdef FEAT_NORMAL 337 #ifdef FEAT_NORMAL
337 # define FEAT_BYTEOFF 338 # define FEAT_BYTEOFF
338 #endif
339
340 /*
341 * +wildignore 'wildignore' and 'backupskip' options
342 * Needed for Unix to make "crontab -e" work.
343 */
344 #if defined(FEAT_NORMAL) || defined(UNIX)
345 # define FEAT_WILDIGN
346 #endif 339 #endif
347 340
348 /* 341 /*
349 * +wildmenu 'wildmenu' option 342 * +wildmenu 'wildmenu' option
350 */ 343 */