diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-05-23 15:49:28 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-05-23 16:06:58 -0300 |
commit | 7dfc7bc2e17151dc545c3f2f339515c1b946e586 (patch) | |
tree | cac11fd8d24bb5e223754a22cb90dc9e77184575 /src/nvim/os_unix.c | |
parent | 72e3125f452ae7224162da8e940e20b00680d41a (diff) | |
download | rneovim-7dfc7bc2e17151dc545c3f2f339515c1b946e586.tar.gz rneovim-7dfc7bc2e17151dc545c3f2f339515c1b946e586.tar.bz2 rneovim-7dfc7bc2e17151dc545c3f2f339515c1b946e586.zip |
API: Refactor: Implement api/handle module
This module will be used to implement remote management of objects through the
API. Object types to be registered must have a `uint64_t` field named 'handle'.
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 52627b6a8b..e0b838ed26 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -27,6 +27,7 @@ #include <string.h> +#include "nvim/api/private/handle.h" #include "nvim/vim.h" #include "nvim/os_unix.h" #include "nvim/buffer.h" @@ -542,6 +543,7 @@ int mch_nodetype(char_u *name) void mch_early_init() { + handle_init(); time_init(); } |