diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-07 14:27:38 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-07 14:27:38 +0100 |
commit | 835dc636a5350f610b62f110227d2363b5b2880a (patch) | |
tree | d14dbbe08553b530c8fd593844a34c244a05677d /src/feature.h | |
parent | c5f98ee987ae0c369867cf6cc581c766d3c0226d (diff) | |
download | vim-git-835dc636a5350f610b62f110227d2363b5b2880a.tar.gz |
patch 7.4.1274v7.4.1274
Problem: Cannot run a job.
Solution: Add job_start(), job_status() and job_stop(). Currently only works
for Unix.
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/feature.h b/src/feature.h index ca81d8972..19425ed35 100644 --- a/src/feature.h +++ b/src/feature.h @@ -1255,13 +1255,20 @@ #endif /* - * The Channel feature requires +eval. + * The +channel feature requires +eval. */ #if !defined(FEAT_EVAL) && defined(FEAT_CHANNEL) # undef FEAT_CHANNEL #endif /* + * The +job feature requires Unix and +eval. + */ +#if defined(UNIX) && defined(FEAT_EVAL) +# define FEAT_JOB +#endif + +/* * +signs Allow signs to be displayed to the left of text lines. * Adds the ":sign" command. */ |