summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-30 23:20:33 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-30 23:20:33 +0100
commit20fb9f346497daca4d19402fdfa5de7958642477 (patch)
treea5f484e21e755b04f4e2ab195c8aac3e8c299daa /src/feature.h
parentba4ef2757cfc126f342b710f1ad9ea39e6b56cec (diff)
patch 7.4.1217v7.4.1217
Problem: Execution of command on channel doesn't work yet. Solution: Implement the "ex" and "normal" commands.
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature.h b/src/feature.h
index dd18394c53..f1a3a4a39b 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -256,7 +256,7 @@
/*
* +ex_extra ":retab", ":right", ":left", ":center", ":normal".
*/
-#ifdef FEAT_NORMAL
+#if defined(FEAT_NORMAL) || defined(FEAT_CHANNEL)
# define FEAT_EX_EXTRA
#endif