summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-18 22:26:31 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-18 22:26:31 +0200
commit0a52df50a0e8fce6f5e0eb5f5373dcd0fa24d83a (patch)
tree9860863c20df3f5354bf67a1d7efe054e23e8a99 /src/feature.h
parent66b51420e0c8d49bcf6786b792c938d6099e3393 (diff)
patch 8.1.1887: the +cmdline_compl feature is not in the tiny versionv8.1.1887
Problem: The +cmdline_compl feature is not in the tiny version. Solution: Graduate the +cmdline_compl feature.
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/feature.h b/src/feature.h
index a8ae37663d..1c5128a7d6 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -105,6 +105,7 @@
* +virtualedit 'virtualedit' option and its implementation
* +user_commands Allow the user to define his own commands.
* +multi_byte Generic multi-byte character handling.
+ * +cmdline_compl completion of mappings/abbreviations in cmdline mode.
*
* Obsolete:
* +tag_old_static Old style static tags: "file:tag file ..".
@@ -177,14 +178,6 @@
# define FEAT_INS_EXPAND
#endif
-/*
- * +cmdline_compl completion of mappings/abbreviations in cmdline mode.
- * Takes a few Kbyte of code.
- */
-#ifdef FEAT_NORMAL
-# define FEAT_CMDL_COMPL
-#endif
-
#ifdef FEAT_NORMAL
# define VIM_BACKTICK /* internal backtick expansion */
#endif