From d1b00daf539ada2a5d1bbfa89a3f37a7d2f20ae7 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 21 Feb 2026 06:32:11 +0100 Subject: [PATCH] Decided not to use this after all Stuck with more prefix-based keys --- config/ghostty/config | 2 -- migrations/1770728860.sh | 5 ----- 2 files changed, 7 deletions(-) delete mode 100644 migrations/1770728860.sh diff --git a/config/ghostty/config b/config/ghostty/config index af2c995c..d53f5c32 100644 --- a/config/ghostty/config +++ b/config/ghostty/config @@ -23,8 +23,6 @@ cursor-style-blink = false shell-integration-features = no-cursor,ssh-env # Keyboard bindings -keybind = ctrl+shift+page_up=unbind -keybind = ctrl+shift+page_down=unbind keybind = shift+insert=paste_from_clipboard keybind = control+insert=copy_to_clipboard keybind = super+control+shift+alt+arrow_down=resize_split:down,100 diff --git a/migrations/1770728860.sh b/migrations/1770728860.sh deleted file mode 100644 index 85f19f46..00000000 --- a/migrations/1770728860.sh +++ /dev/null @@ -1,5 +0,0 @@ -echo "Unbind ctrl+shift+page_up/page_down in Ghostty so it doesn't interfere with tmux keybindings" - -if [[ -f ~/.config/ghostty/config ]] && ! grep -q "keybind = ctrl+shift+page_up=" ~/.config/ghostty/config; then - sed -i '/# Keyboard bindings/a\keybind = ctrl+shift+page_up=unbind\nkeybind = ctrl+shift+page_down=unbind' ~/.config/ghostty/config -fi