From abf119918f90350be4de84ca1abdf586f0c9f1ac Mon Sep 17 00:00:00 2001 From: Aaron Gyes Date: Wed, 1 Dec 2021 02:15:58 -0800 Subject: [PATCH] fkr: do not do should_exit() thing for continuous mode. Fixes #8510. --- src/fish_key_reader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fish_key_reader.cpp b/src/fish_key_reader.cpp index 69bf64689..8bda6df01 100644 --- a/src/fish_key_reader.cpp +++ b/src/fish_key_reader.cpp @@ -260,7 +260,7 @@ static void process_input(bool continuous_mode, bool verbose) { output_bind_command(bind_chars); } - if (should_exit(wc)) { + if (continuous_mode && should_exit(wc)) { std::fwprintf(stderr, L"\nExiting at your request.\n"); break; }