mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 16:56:09 +03:00
Merge pull request #2294 from qwerasd205/sequoia-ctrl-return
macOS: prevent ctrl-return key equivalent
This commit is contained in:
@ -692,6 +692,11 @@ extension Ghostty {
|
|||||||
// sound and we don't like the beep sound.
|
// sound and we don't like the beep sound.
|
||||||
equivalent = "_"
|
equivalent = "_"
|
||||||
|
|
||||||
|
case "\r":
|
||||||
|
// Pass C-<return> through verbatim
|
||||||
|
// (prevent the default context menu equivalent)
|
||||||
|
equivalent = "\r"
|
||||||
|
|
||||||
default:
|
default:
|
||||||
// Ignore other events
|
// Ignore other events
|
||||||
return false
|
return false
|
||||||
|
Reference in New Issue
Block a user