diff --git a/kitty/boss.py b/kitty/boss.py index dc2771320..8fdc81537 100644 --- a/kitty/boss.py +++ b/kitty/boss.py @@ -1366,6 +1366,8 @@ def dispatch_possible_special_key(self, ev: KeyEvent) -> bool: if self.global_shortcuts_map and get_shortcut(self.global_shortcuts_map, ev): return True if self.pop_keyboard_mode(): + if get_options().enable_audio_bell: + ring_bell() return True else: final_action = self.matching_key_action(key_action)