comparison src/feature.h @ 14424:0a69e6e708f9 v8.1.0226

patch 8.1.0226: too many #ifdefs commit https://github.com/vim/vim/commit/1f0bfe561737cd445532f20d7607a81d1dadddee Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 29 16:09:22 2018 +0200 patch 8.1.0226: too many #ifdefs Problem: Too many #ifdefs. Solution: Graduate the +vreplace feature, it's not much code and quite a few #ifdefs.
author Christian Brabandt <cb@256bit.org>
date Sun, 29 Jul 2018 16:15:05 +0200
parents 2ad722003b36
children 4caa51067cb8
comparison
equal deleted inserted replaced
14423:cd3118af2cfc 14424:0a69e6e708f9
202 /* 202 /*
203 * +virtualedit 'virtualedit' option and its implementation 203 * +virtualedit 'virtualedit' option and its implementation
204 */ 204 */
205 #ifdef FEAT_NORMAL 205 #ifdef FEAT_NORMAL
206 # define FEAT_VIRTUALEDIT 206 # define FEAT_VIRTUALEDIT
207 #endif
208
209 /*
210 * +vreplace "gR" and "gr" commands.
211 */
212 #ifdef FEAT_NORMAL
213 # define FEAT_VREPLACE
214 #endif 207 #endif
215 208
216 /* 209 /*
217 * +cmdline_info 'showcmd' and 'ruler' options. 210 * +cmdline_info 'showcmd' and 'ruler' options.
218 */ 211 */