mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
fix(tui): make :cquit work properly with remote TUI (#25313)
This commit is contained in:
parent
c68c121f50
commit
c26b39a9aa
@ -659,6 +659,9 @@ void os_exit(int r)
|
|||||||
|
|
||||||
if (ui_client_channel_id) {
|
if (ui_client_channel_id) {
|
||||||
ui_client_stop();
|
ui_client_stop();
|
||||||
|
if (r == 0) {
|
||||||
|
r = ui_client_exit_status;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
ui_flush();
|
ui_flush();
|
||||||
ui_call_stop();
|
ui_call_stop();
|
||||||
|
@ -386,6 +386,9 @@ static void terminfo_stop(TUIData *tui)
|
|||||||
unibi_out_ext(tui, tui->unibi_ext.disable_extended_keys);
|
unibi_out_ext(tui, tui->unibi_ext.disable_extended_keys);
|
||||||
// May restore old title before exiting alternate screen.
|
// May restore old title before exiting alternate screen.
|
||||||
tui_set_title(tui, (String)STRING_INIT);
|
tui_set_title(tui, (String)STRING_INIT);
|
||||||
|
if (ui_client_exit_status == 0) {
|
||||||
|
ui_client_exit_status = tui->seen_error_exit;
|
||||||
|
}
|
||||||
// if nvim exited with nonzero status, without indicated this was an
|
// if nvim exited with nonzero status, without indicated this was an
|
||||||
// intentional exit (like `:1cquit`), it likely was an internal failure.
|
// intentional exit (like `:1cquit`), it likely was an internal failure.
|
||||||
// Don't clobber the stderr error message in this case.
|
// Don't clobber the stderr error message in this case.
|
||||||
|
@ -1720,7 +1720,15 @@ describe('TUI', function()
|
|||||||
|
|
||||||
it('no assert failure on deadly signal #21896', function()
|
it('no assert failure on deadly signal #21896', function()
|
||||||
exec_lua([[vim.uv.kill(vim.fn.jobpid(vim.bo.channel), 'sigterm')]])
|
exec_lua([[vim.uv.kill(vim.fn.jobpid(vim.bo.channel), 'sigterm')]])
|
||||||
screen:expect({any = '%[Process exited 1%]'})
|
screen:expect{grid=[[
|
||||||
|
Vim: Caught deadly signal 'SIGTERM' |
|
||||||
|
|
|
||||||
|
|
|
||||||
|
[Process exited 1]{1: } |
|
||||||
|
|
|
||||||
|
|
|
||||||
|
{3:-- TERMINAL --} |
|
||||||
|
]]}
|
||||||
end)
|
end)
|
||||||
|
|
||||||
it('no stack-use-after-scope with cursor color #22432', function()
|
it('no stack-use-after-scope with cursor color #22432', function()
|
||||||
@ -2743,7 +2751,15 @@ describe("TUI as a client", function()
|
|||||||
-- No heap-use-after-free when receiving UI events after deadly signal #22184
|
-- No heap-use-after-free when receiving UI events after deadly signal #22184
|
||||||
server:request('nvim_input', ('a'):rep(1000))
|
server:request('nvim_input', ('a'):rep(1000))
|
||||||
exec_lua([[vim.uv.kill(vim.fn.jobpid(vim.bo.channel), 'sigterm')]])
|
exec_lua([[vim.uv.kill(vim.fn.jobpid(vim.bo.channel), 'sigterm')]])
|
||||||
screen:expect({any = '%[Process exited 1%]'})
|
screen:expect{grid=[[
|
||||||
|
Vim: Caught deadly signal 'SIGTERM' |
|
||||||
|
|
|
||||||
|
|
|
||||||
|
[Process exited 1]{1: } |
|
||||||
|
|
|
||||||
|
|
|
||||||
|
{3:-- TERMINAL --} |
|
||||||
|
]]}
|
||||||
|
|
||||||
eq(0, meths.get_vvar('shell_error'))
|
eq(0, meths.get_vvar('shell_error'))
|
||||||
-- exits on input eof #22244
|
-- exits on input eof #22244
|
||||||
@ -2771,7 +2787,7 @@ describe("TUI as a client", function()
|
|||||||
]])
|
]])
|
||||||
end)
|
end)
|
||||||
|
|
||||||
it("exits when server quits", function()
|
local function test_remote_tui_quit(status)
|
||||||
local server_super = spawn_argv(false) -- equivalent to clear()
|
local server_super = spawn_argv(false) -- equivalent to clear()
|
||||||
local client_super = spawn_argv(true)
|
local client_super = spawn_argv(true)
|
||||||
|
|
||||||
@ -2780,6 +2796,15 @@ describe("TUI as a client", function()
|
|||||||
local screen_server = thelpers.screen_setup(0,
|
local screen_server = thelpers.screen_setup(0,
|
||||||
string.format([=[["%s", "--listen", "%s", "-u", "NONE", "-i", "NONE", "--cmd", "%s laststatus=2 background=dark"]]=],
|
string.format([=[["%s", "--listen", "%s", "-u", "NONE", "-i", "NONE", "--cmd", "%s laststatus=2 background=dark"]]=],
|
||||||
nvim_prog, server_pipe, nvim_set))
|
nvim_prog, server_pipe, nvim_set))
|
||||||
|
screen_server:expect{grid=[[
|
||||||
|
{1: } |
|
||||||
|
{4:~ }|
|
||||||
|
{4:~ }|
|
||||||
|
{4:~ }|
|
||||||
|
{5:[No Name] }|
|
||||||
|
|
|
||||||
|
{3:-- TERMINAL --} |
|
||||||
|
]]}
|
||||||
|
|
||||||
feed_data("iHello, World")
|
feed_data("iHello, World")
|
||||||
screen_server:expect{grid=[[
|
screen_server:expect{grid=[[
|
||||||
@ -2819,13 +2844,40 @@ describe("TUI as a client", function()
|
|||||||
|
|
||||||
-- quitting the server
|
-- quitting the server
|
||||||
set_session(server_super)
|
set_session(server_super)
|
||||||
feed_data(":q!\n")
|
feed_data(status and ':' .. status .. 'cquit!\n' or ":quit!\n")
|
||||||
screen_server:expect({any="Process exited 0"})
|
status = status and status or 0
|
||||||
|
screen_server:expect{grid=[[
|
||||||
|
|
|
||||||
|
[Process exited ]] .. status .. [[]{1: }{MATCH:%s+}|
|
||||||
|
|
|
||||||
|
|
|
||||||
|
|
|
||||||
|
|
|
||||||
|
{3:-- TERMINAL --} |
|
||||||
|
]]}
|
||||||
-- assert that client has exited
|
-- assert that client has exited
|
||||||
screen_client:expect({any="Process exited 0"})
|
screen_client:expect{grid=[[
|
||||||
|
|
|
||||||
|
[Process exited ]] .. status .. [[]{1: }{MATCH:%s+}|
|
||||||
|
|
|
||||||
|
|
|
||||||
|
|
|
||||||
|
|
|
||||||
|
{3:-- TERMINAL --} |
|
||||||
|
]]}
|
||||||
|
|
||||||
|
|
||||||
server_super:close()
|
server_super:close()
|
||||||
client_super:close()
|
client_super:close()
|
||||||
|
end
|
||||||
|
|
||||||
|
describe("exits when server quits", function()
|
||||||
|
it("with :quit", function()
|
||||||
|
test_remote_tui_quit()
|
||||||
|
end)
|
||||||
|
|
||||||
|
it("with :cquit", function()
|
||||||
|
test_remote_tui_quit(42)
|
||||||
|
end)
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
|
Loading…
Reference in New Issue
Block a user