diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-30 23:20:33 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-30 23:20:33 +0100 |
commit | 20fb9f346497daca4d19402fdfa5de7958642477 (patch) | |
tree | a5f484e21e755b04f4e2ab195c8aac3e8c299daa /src/feature.h | |
parent | ba4ef2757cfc126f342b710f1ad9ea39e6b56cec (diff) | |
download | vim-git-20fb9f346497daca4d19402fdfa5de7958642477.tar.gz |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature.h b/src/feature.h index dd18394c5..f1a3a4a39 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 |