aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os_unix.c
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-08-28 15:46:21 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-08-29 22:08:58 -0300
commitaa23d2f835e32c01b318712459ba7b9f55922469 (patch)
tree8476c7d99b32b8e4faea05ddfdb8cd1f4e6f370f /src/nvim/os_unix.c
parent9d5e2c34c95739c8130f33aad8a18b19a281a1ad (diff)
downloadrneovim-aa23d2f835e32c01b318712459ba7b9f55922469.tar.gz
rneovim-aa23d2f835e32c01b318712459ba7b9f55922469.tar.bz2
rneovim-aa23d2f835e32c01b318712459ba7b9f55922469.zip
msgpack-rpc: Accept method names in requests
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r--src/nvim/os_unix.c2
1 files changed, 2 insertions, 0 deletions
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 <sys/ioctl.h>
@@ -164,6 +165,7 @@ void mch_init(void)
mac_conv_init();
#endif
+ msgpack_rpc_init();
event_init();
}