From aeee2648caaada14adee7f6db7aa93c778834701 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Sat, 27 Jul 2024 10:37:19 +0200 Subject: [PATCH] zsh: make ctrl-q usable in the terminal --- config/zsh/.zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/zsh/.zshrc b/config/zsh/.zshrc index a858df8..d1c4900 100644 --- a/config/zsh/.zshrc +++ b/config/zsh/.zshrc @@ -1,3 +1,6 @@ +# Make ctrl-q and ctrl-s available to terminal applications. +stty start undef stop undef + # Set up zsh for interactive use (options, prompt, aliases, etc.) source "$ZDOTDIR/aliases.zsh" source "$ZDOTDIR/completion.zsh" @@ -23,8 +26,5 @@ local_config="$HOME/.local/etc/zsh/zshrc" [ -r "$local_config" ] && source "$local_config" unset local_config -# Prevent ctrl-s from freezing the terminal. -stty stop undef - # Allow comments in interactive use. setopt INTERACTIVE_COMMENTS