mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 00:36:07 +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.
|
||||
equivalent = "_"
|
||||
|
||||
case "\r":
|
||||
// Pass C-<return> through verbatim
|
||||
// (prevent the default context menu equivalent)
|
||||
equivalent = "\r"
|
||||
|
||||
default:
|
||||
// Ignore other events
|
||||
return false
|
||||
|
Reference in New Issue
Block a user