This commit is contained in:
sharmaharshitnone 2025-05-29 19:04:44 +05:30
parent 3338d39206
commit edc87670eb
16 changed files with 1096 additions and 13 deletions

9
disable_flow_control.sh Normal file
View file

@ -0,0 +1,9 @@
# Disable flow control (Ctrl+S, Ctrl+Q) in the terminal
# This allows Ctrl+S to be used for saving in Neovim
stty -ixon
# Optional: You can also add this line to make Ctrl+S work in programs that use readline
# (like the bash/zsh command line itself)
if [ -t 0 ]; then
bind -r '\C-s' 2>/dev/null || true
fi