Skip to content

Instantly share code, notes, and snippets.

@yuki-yano
Created October 18, 2025 13:12
Show Gist options
  • Select an option

  • Save yuki-yano/f1f0d11db6d1d49180bca7e282599932 to your computer and use it in GitHub Desktop.

Select an option

Save yuki-yano/f1f0d11db6d1d49180bca7e282599932 to your computer and use it in GitHub Desktop.
#! /usr/bin/env zsh
fancy-ctrl-z () {
if [[ $#BUFFER -eq 0 ]]; then
BUFFER=" fg"
zle accept-line
else
zle push-input
zle clear-screen
fi
}
zle -N fancy-ctrl-z
bindkey '^Z' fancy-ctrl-z
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment