bashrc/zshrc: undefine stop control character with stty

This commit is contained in:
Fernando Schauenburg 2021-08-09 00:03:16 +02:00
parent 37a8a8f5e9
commit ef1142e992
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
#!/bin/bash
# Set up bash for interactive use (options, prompt, aliases, etc.)
stty -ixon # disable ctrl-s and ctrl-q
stty stop undef # Prevent ctrl-s from freezing the terminal.
shopt -s cdspell checkwinsize globstar histappend nocaseglob
set -o noclobber # Prevent overwriting files with output redirection.

View file

@ -1,7 +1,7 @@
#!/bin/zsh
# Set up zsh for interactive use (options, prompt, aliases, etc.)
stty -ixon # disable ctrl-s and ctrl-q
stty stop undef # Prevent ctrl-s from freezing the terminal.
[ -f "${XDG_CONFIG_HOME}/shell/aliases.sh" ] && source "${XDG_CONFIG_HOME}/shell/aliases.sh"