comparison src/feature.h @ 29881:0cc9a3001717 v9.0.0279

patch 9.0.0279: the tiny version has the popup menu but not 'wildmenu' Commit: https://github.com/vim/vim/commit/5416232707349d5f24294178f47544f2024b73ed Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 26 16:58:51 2022 +0100 patch 9.0.0279: the tiny version has the popup menu but not 'wildmenu' Problem: The tiny version has the popup menu but not 'wildmenu'. Solution: Graduate the wildmenu feature.
author Bram Moolenaar <Bram@vim.org>
date Fri, 26 Aug 2022 18:00:05 +0200
parents 77141226eb2e
children 1342ee83ab97
comparison
equal deleted inserted replaced
29880:bd3aac5d1d9e 29881:0cc9a3001717
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 * +wildignore 'wildignore' and 'backupskip' options
122 * +wildmenu 'wildmenu' option
122 * 123 *
123 * Obsolete: 124 * Obsolete:
124 * +tag_old_static Old style static tags: "file:tag file ..". 125 * +tag_old_static Old style static tags: "file:tag file ..".
125 * Support was removed in 8.1.1093. 126 * Support was removed in 8.1.1093.
126 * +farsi Farsi (Persian language) Keymap support. 127 * +farsi Farsi (Persian language) Keymap support.
334 * and byte2line(). 335 * and byte2line().
335 * Note: Required for Macintosh. 336 * Note: Required for Macintosh.
336 */ 337 */
337 #ifdef FEAT_NORMAL 338 #ifdef FEAT_NORMAL
338 # define FEAT_BYTEOFF 339 # define FEAT_BYTEOFF
339 #endif
340
341 /*
342 * +wildmenu 'wildmenu' option
343 */
344 #if defined(FEAT_NORMAL)
345 # define FEAT_WILDMENU
346 #endif 340 #endif
347 341
348 /* 342 /*
349 * +viminfo reading/writing the viminfo file. Takes about 8Kbyte 343 * +viminfo reading/writing the viminfo file. Takes about 8Kbyte
350 * of code. 344 * of code.