diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-09-08 16:03:37 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-09-12 13:25:28 -0300 |
commit | 38dcfb60627cbdfa2eaf5d0d991c872c85868f22 (patch) | |
tree | 445d772b54248e01a4b84dc00e6830823c88fc36 /src/nvim/os_unix.c | |
parent | 2f566c83d9eee4a8097c9a18eb58dcef6adf894e (diff) | |
download | rneovim-38dcfb60627cbdfa2eaf5d0d991c872c85868f22.tar.gz rneovim-38dcfb60627cbdfa2eaf5d0d991c872c85868f22.tar.bz2 rneovim-38dcfb60627cbdfa2eaf5d0d991c872c85868f22.zip |
api/msgpack-rpc: Use EXT type to serialize Buffer/Window/Tabpage
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 3fa8b803b2..6c79fbd479 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -55,6 +55,7 @@ #include "nvim/os/signal.h" #include "nvim/os/job.h" #include "nvim/os/msgpack_rpc.h" +#include "nvim/os/msgpack_rpc_helpers.h" #if defined(HAVE_SYS_IOCTL_H) # include <sys/ioctl.h> @@ -166,6 +167,7 @@ void mch_init(void) #endif msgpack_rpc_init(); + msgpack_rpc_helpers_init(); event_init(); } |