summaryrefslogtreecommitdiff
path: root/src/terminal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/terminal.c')
-rw-r--r--src/terminal.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/terminal.c b/src/terminal.c
index bff83d24b..67972f14b 100644
--- a/src/terminal.c
+++ b/src/terminal.c
@@ -2007,8 +2007,13 @@ terminal_loop(int blocking)
if (ctrl_break_was_pressed)
mch_signal_job(curbuf->b_term->tl_job, (char_u *)"kill");
#endif
- /* Was either CTRL-W (termkey) or CTRL-\ pressed? */
- if (c == (termkey == 0 ? Ctrl_W : termkey) || c == Ctrl_BSL)
+ /* Was either CTRL-W (termkey) or CTRL-\ pressed?
+ * Not in a system terminal. */
+ if ((c == (termkey == 0 ? Ctrl_W : termkey) || c == Ctrl_BSL)
+#ifdef FEAT_GUI
+ && !curbuf->b_term->tl_system
+#endif
+ )
{
int prev_c = c;