From aa23d2f835e32c01b318712459ba7b9f55922469 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Thu, 28 Aug 2014 15:46:21 -0300 Subject: msgpack-rpc: Accept method names in requests --- src/nvim/os_unix.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/nvim/os_unix.c') diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 1b092c8261..33b08d7df6 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -54,6 +54,7 @@ #include "nvim/os/shell.h" #include "nvim/os/signal.h" #include "nvim/os/job.h" +#include "nvim/os/msgpack_rpc.h" #if defined(HAVE_SYS_IOCTL_H) # include @@ -164,6 +165,7 @@ void mch_init(void) mac_conv_init(); #endif + msgpack_rpc_init(); event_init(); } -- cgit