diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-07 14:21:42 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-07 15:03:05 -0300 |
commit | 4b063ea3adae8b47a16e229bcac53f5d86ad419d (patch) | |
tree | c4d5a55963d064bfb9e6b7bf4dd6b6d6fdd89e4b /src/os_unix.c | |
parent | 39932212d8805c018a643734a7b66aedd304c45d (diff) | |
download | rneovim-4b063ea3adae8b47a16e229bcac53f5d86ad419d.tar.gz rneovim-4b063ea3adae8b47a16e229bcac53f5d86ad419d.tar.bz2 rneovim-4b063ea3adae8b47a16e229bcac53f5d86ad419d.zip |
Implement job control
- Add a job control module for spawning and controlling co-processes
- Add three vimscript functions for interfacing with the module
- Use dedicated header files for typedefs/structs in event/job modules
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index c0fcc63fb0..9727140597 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -56,6 +56,7 @@ #include "os/input.h" #include "os/shell.h" #include "os/signal.h" +#include "os/job.h" #include "os_unixx.h" /* unix includes for os_unix.c only */ @@ -589,6 +590,7 @@ void mch_exit(int r) { exiting = TRUE; + job_teardown(); { settmode(TMODE_COOK); |