zsh: add ctrl+z to foreground tasks

This commit is contained in:
Mark Riedesel 2025-03-19 10:30:01 -05:00
parent af0451840d
commit 35b947d0c5

View file

@ -0,0 +1,4 @@
# ctrl+z to foreground previously backgrounded tasks
_zsh_cli_fg() { fg; }
zle -N _zsh_cli_fg
bindkey '^Z' _zsh_cli_fg