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/globals.h | |
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/globals.h')
-rw-r--r-- | src/globals.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h index 812a6f688c..836e41aa2b 100644 --- a/src/globals.h +++ b/src/globals.h @@ -1009,6 +1009,9 @@ EXTERN char_u e_invexpr2[] INIT(= N_("E15: Invalid expression: %s")); EXTERN char_u e_invrange[] INIT(= N_("E16: Invalid range")); EXTERN char_u e_invcmd[] INIT(= N_("E476: Invalid command")); EXTERN char_u e_isadir2[] INIT(= N_("E17: \"%s\" is a directory")); +EXTERN char_u e_invjob[] INIT(= N_("E900: Invalid job id")); +EXTERN char_u e_jobtblfull[] INIT(= N_("E901: Job table is full")); +EXTERN char_u e_jobexe[] INIT(= N_("E902: \"%s\" is not an executable")); #ifdef FEAT_LIBCALL EXTERN char_u e_libcall[] INIT(= N_("E364: Library call failed for \"%s()\"")); #endif |