diff options
Diffstat (limited to 'src/nvim/os/channel.c')
-rw-r--r-- | src/nvim/os/channel.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/os/channel.c b/src/nvim/os/channel.c index 22d31608a5..2c1928f3b3 100644 --- a/src/nvim/os/channel.c +++ b/src/nvim/os/channel.c @@ -67,6 +67,10 @@ void channel_init(void) channels = pmap_new(uint64_t)(); event_strings = pmap_new(cstr_t)(); msgpack_sbuffer_init(&out_buffer); + + if (embedded_mode) { + channel_from_stdio(); + } } /// Teardown the module |