From 2324e89c40b3f35c177bdb2238b43bdfe68d6ee0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Van=C4=9Bk?= Date: Sat, 25 Apr 2020 21:39:47 +0200 Subject: [PATCH] fix(config): remove default key bindings for input broadcasting (#40) Accidental activation of this feature may be dangerous. This change forces users to assign a binding manually. See https://bugs.launchpad.net/terminator/+bug/1872460 --- terminatorlib/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terminatorlib/config.py b/terminatorlib/config.py index fbfcb84e..1ce111a5 100644 --- a/terminatorlib/config.py +++ b/terminatorlib/config.py @@ -180,9 +180,9 @@ DEFAULTS = { 'ungroup_tab' : 't', 'new_window' : 'i', 'new_terminator' : 'i', - 'broadcast_off' : 'o', - 'broadcast_group' : 'g', - 'broadcast_all' : 'a', + 'broadcast_off' : '', + 'broadcast_group' : '', + 'broadcast_all' : '', 'insert_number' : '1', 'insert_padded' : '0', 'edit_window_title': 'w',