From e232863028d48192d3e0e3e094fc3d10bfdb0f7a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 20 Mar 2018 15:10:29 +0530 Subject: [PATCH] Also recognize unicode aliases for macOS modifiers --- kitty/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/config.py b/kitty/config.py index 8187670ac..69218663f 100644 --- a/kitty/config.py +++ b/kitty/config.py @@ -50,7 +50,7 @@ def to_cursor_shape(x): def parse_mods(parts): def map_mod(m): - return {'CTRL': 'CONTROL', 'CMD': 'SUPER', 'OPTION': 'ALT'}.get(m, m) + return {'CTRL': 'CONTROL', 'CMD': 'SUPER', '⌘': 'SUPER', '⌥': 'ALT', 'OPTION': 'ALT'}.get(m, m) mods = 0 for m in parts: