diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-04-18 11:47:14 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-04-18 11:47:14 +0100 |
commit | 58d1a206c6ae6b33059ea6b469c21dad92ea0841 (patch) | |
tree | 7a27d44d3631833c77536a700e509d5e08fbb562 /cmd-queue.c | |
parent | e0c982c5adf54fcfc7c6e588b1350fd8ae474310 (diff) | |
download | rtmux-58d1a206c6ae6b33059ea6b469c21dad92ea0841.tar.gz rtmux-58d1a206c6ae6b33059ea6b469c21dad92ea0841.tar.bz2 rtmux-58d1a206c6ae6b33059ea6b469c21dad92ea0841.zip |
Add a way for lines added to copy mode to be passed through the parser to
handle escape sequences and use it for run-shell, GitHub issue 3156.
Diffstat (limited to 'cmd-queue.c')
-rw-r--r-- | cmd-queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-queue.c b/cmd-queue.c index 6c7c3675..8325e2e8 100644 --- a/cmd-queue.c +++ b/cmd-queue.c @@ -856,7 +856,7 @@ cmdq_print(struct cmdq_item *item, const char *fmt, ...) window_pane_set_mode(wp, NULL, &window_view_mode, NULL, NULL); } - window_copy_add(wp, "%s", msg); + window_copy_add(wp, 0, "%s", msg); } free(msg); |