comparison src/feature.h @ 17781:04245f071792 v8.1.1887

patch 8.1.1887: the +cmdline_compl feature is not in the tiny version commit https://github.com/vim/vim/commit/0a52df50a0e8fce6f5e0eb5f5373dcd0fa24d83a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 18 22:26:31 2019 +0200 patch 8.1.1887: the +cmdline_compl feature is not in the tiny version Problem: The +cmdline_compl feature is not in the tiny version. Solution: Graduate the +cmdline_compl feature.
author Bram Moolenaar <Bram@vim.org>
date Sun, 18 Aug 2019 22:30:04 +0200
parents 109a0889b900
children 59f8948b7590
comparison
equal deleted inserted replaced
17780:a65bba9901de 17781:04245f071792
103 * +visual Visual mode 103 * +visual Visual mode
104 * +visualextra Extra features for Visual mode (mostly block operators). 104 * +visualextra Extra features for Visual mode (mostly block operators).
105 * +virtualedit 'virtualedit' option and its implementation 105 * +virtualedit 'virtualedit' option and its implementation
106 * +user_commands Allow the user to define his own commands. 106 * +user_commands Allow the user to define his own commands.
107 * +multi_byte Generic multi-byte character handling. 107 * +multi_byte Generic multi-byte character handling.
108 * +cmdline_compl completion of mappings/abbreviations in cmdline mode.
108 * 109 *
109 * Obsolete: 110 * Obsolete:
110 * +tag_old_static Old style static tags: "file:tag file ..". 111 * +tag_old_static Old style static tags: "file:tag file ..".
111 * Support was removed in 8.1.1093. 112 * Support was removed in 8.1.1093.
112 * +farsi Farsi (Persian language) Keymap support. 113 * +farsi Farsi (Persian language) Keymap support.
173 * +insert_expand CTRL-N/CTRL-P/CTRL-X in insert mode. Takes about 174 * +insert_expand CTRL-N/CTRL-P/CTRL-X in insert mode. Takes about
174 * 4Kbyte of code. 175 * 4Kbyte of code.
175 */ 176 */
176 #ifdef FEAT_NORMAL 177 #ifdef FEAT_NORMAL
177 # define FEAT_INS_EXPAND 178 # define FEAT_INS_EXPAND
178 #endif
179
180 /*
181 * +cmdline_compl completion of mappings/abbreviations in cmdline mode.
182 * Takes a few Kbyte of code.
183 */
184 #ifdef FEAT_NORMAL
185 # define FEAT_CMDL_COMPL
186 #endif 179 #endif
187 180
188 #ifdef FEAT_NORMAL 181 #ifdef FEAT_NORMAL
189 # define VIM_BACKTICK /* internal backtick expansion */ 182 # define VIM_BACKTICK /* internal backtick expansion */
190 #endif 183 #endif