contour-terminal / contour

Modern C++ Terminal Emulator
http://contour-terminal.org/
Apache License 2.0
2.32k stars 102 forks source link

Fix Command modifier for input mappings on on MacOS #1382

Closed christianparpart closed 6 months ago

christianparpart commented 6 months ago

This seems to be MacOS specific. The problem is, that Qt does not generate QKeyEvent::text() on key press for Command modifiers with characters (such as C or V), but indeed does on key release events (neither press nor repeat).

We however do not want to trigger input mappings on release but on press (for now).

Closes #1379.