1
0
forked from aniani/vim

patch 7.4.1274

Problem:    Cannot run a job.
Solution:   Add job_start(), job_status() and job_stop(). Currently only works
            for Unix.
This commit is contained in:
Bram Moolenaar
2016-02-07 14:27:38 +01:00
parent c5f98ee987
commit 835dc636a5
9 changed files with 611 additions and 104 deletions

View File

@@ -1255,12 +1255,19 @@
#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.