diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-02-13 16:33:20 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-02-14 07:49:31 +0800 |
commit | 820430dc0bb84011edae801262e64a10be7ebb9d (patch) | |
tree | ec1b2c9998953953f11630fa8b012f7ca6b54312 /src/nvim/ui_client.c | |
parent | 5a8039a0cb544eac91c569439c61ba0a35950506 (diff) | |
download | rneovim-820430dc0bb84011edae801262e64a10be7ebb9d.tar.gz rneovim-820430dc0bb84011edae801262e64a10be7ebb9d.tar.bz2 rneovim-820430dc0bb84011edae801262e64a10be7ebb9d.zip |
fix(tui): exit on input eof
Diffstat (limited to 'src/nvim/ui_client.c')
-rw-r--r-- | src/nvim/ui_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ui_client.c b/src/nvim/ui_client.c index a7a85bf61f..df0a26c6ee 100644 --- a/src/nvim/ui_client.c +++ b/src/nvim/ui_client.c @@ -113,7 +113,7 @@ void ui_client_run(bool remote_ui) ui_client_is_remote = remote_ui; int width, height; char *term; - tui = tui_start(&width, &height, &term); + tui_start(&tui, &width, &height, &term); ui_client_attach(width, height, term); |