summaryrefslogtreecommitdiffstats
path: root/window.c
diff options
context:
space:
mode:
authornicm <nicm>2023-01-08 22:17:04 +0000
committernicm <nicm>2023-01-08 22:17:04 +0000
commit7c0789d2d2721b70e04fe6a589f644797d2b5e1f (patch)
tree16b622d5424938054613b1c4e4426956ee344b58 /window.c
parent7ced0a03d2ff51274d5fa5fb6eeaa6f4aac9f2f4 (diff)
Have client return 1 if process is interrupted to an input pane.
Diffstat (limited to 'window.c')
-rw-r--r--window.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/window.c b/window.c
index 4929383e..0fd71c74 100644
--- a/window.c
+++ b/window.c
@@ -1535,8 +1535,10 @@ window_pane_input_callback(struct client *c, __unused const char *path,
wp = window_pane_find_by_id(cdata->wp);
if (cdata->file != NULL && (wp == NULL || c->flags & CLIENT_DEAD)) {
- if (wp == NULL)
+ if (wp == NULL) {
+ c->retval = 1;
c->flags |= CLIENT_EXIT;
+ }
file_cancel(cdata->file);
} else if (cdata->file == NULL || closed || error != 0) {
cmdq_continue(cdata->item);