From ad29d7f639080db96402a89e0a7ab133d3c8ddfc Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 4 Jun 2018 15:12:41 +0530 Subject: [PATCH] ... --- kitty/config_data.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kitty/config_data.py b/kitty/config_data.py index 3b3a1f60b..5eb7a9411 100644 --- a/kitty/config_data.py +++ b/kitty/config_data.py @@ -599,10 +599,15 @@ Hide the kitty window from running tasks (:kbd:`Option+Tab`) on macOS. # }}} g('shortcuts') # {{ + o('kitty_mod', 'ctrl+shift', option_type=to_modifiers, long_text=_(''' The value of :code:`kitty_mod` is used as the modifier for all default shortcuts, you can change it in your kitty.conf to change the modifiers for all the default shortcuts.''')) + +o('clear_all_shortcuts', False, long_text=_(''' +You can have kitty remove all shortcut definition seen up to this point. Useful, for +instance, to remove the default shortcuts.''')) # }}} type_map = {o.name: o.option_type for o in all_options.values()}