Created
October 18, 2025 13:12
-
-
Save yuki-yano/f1f0d11db6d1d49180bca7e282599932 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /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