diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-09-08 16:50:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-08 16:50:45 +0200 |
commit | 83632022f84e4addf9518bf9913cc58b2ae41820 (patch) | |
tree | d09e86ecd2f61d8e93175bceefa1468df0c586e3 /src/nvim/main.c | |
parent | fa90f6cdaae800d9bfbc4f28ec04fb7456751dbe (diff) | |
parent | c705e3fb0b70887aaebe4973ce02acc6be45eb97 (diff) | |
download | rneovim-83632022f84e4addf9518bf9913cc58b2ae41820.tar.gz rneovim-83632022f84e4addf9518bf9913cc58b2ae41820.tar.bz2 rneovim-83632022f84e4addf9518bf9913cc58b2ae41820.zip |
Merge pull request #10959 from bfredl/resizequeue
fix crash on :!tmux split, redraw after resize in pager
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 50e495c1e6..4335dab1f9 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -144,6 +144,8 @@ void event_init(void) { log_init(); loop_init(&main_loop, NULL); + resize_events = multiqueue_new_child(main_loop.events); + // early msgpack-rpc initialization msgpack_rpc_init_method_table(); msgpack_rpc_helpers_init(); |