From 646b0a8d56abaed48b584b9b440159cf58239466 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 24 Feb 2026 22:03:13 -0500 Subject: [PATCH] tty.sh: add stty -ixon hack for Ctrl-{S,Q} --- tty.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tty.sh b/tty.sh index ea6e1c4..1eef15a 100644 --- a/tty.sh +++ b/tty.sh @@ -1,3 +1,6 @@ # For some reason this is required for pinentry-tty to work over SSH, # particularly when signing git commits. export GPG_TTY=$(tty) + +# Prevent Ctrl-S and and Ctrl-Q from fucking up the terminal. +stty -ixon -- 2.51.0