summaryrefslogtreecommitdiffstats
path: root/src/proto/os_unix.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-07 14:27:38 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-07 14:27:38 +0100
commit835dc636a5350f610b62f110227d2363b5b2880a (patch)
treed14dbbe08553b530c8fd593844a34c244a05677d /src/proto/os_unix.pro
parentc5f98ee987ae0c369867cf6cc581c766d3c0226d (diff)
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/proto/os_unix.pro')
-rw-r--r--src/proto/os_unix.pro4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/proto/os_unix.pro b/src/proto/os_unix.pro
index 8442dea7a9..bc250c87eb 100644
--- a/src/proto/os_unix.pro
+++ b/src/proto/os_unix.pro
@@ -55,7 +55,11 @@ int mch_screenmode(char_u *arg);
int mch_get_shellsize(void);
void mch_set_shellsize(void);
void mch_new_shellsize(void);
+int mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc);
int mch_call_shell(char_u *cmd, int options);
+void mch_start_job(char **argv, job_T *job);
+char *mch_job_status(job_T *job);
+int mch_stop_job(job_T *job, char_u *how);
void mch_breakcheck(void);
int mch_expandpath(garray_T *gap, char_u *path, int flags);
int mch_expand_wildcards(int num_pat, char_u **pat, int *num_file, char_u ***file, int flags);