From: Michael Orlitzky Date: Wed, 25 Feb 2026 03:03:13 +0000 (-0500) Subject: tty.sh: add stty -ixon hack for Ctrl-{S,Q} X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=646b0a8d56abaed48b584b9b440159cf58239466;p=shell.d.git tty.sh: add stty -ixon hack for Ctrl-{S,Q} --- 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