foxshell/fn/z4h-eof
2025-07-04 11:48:40 -05:00

10 lines
224 B
Bash

#!/usr/bin/env zsh
local code=$?
builtin zle || builtin exit code
if [[ "$CONTEXT" == start && -z "$BUFFER" ]]; then
typeset -g precmd_functions=(z4h-eof)
builtin zle -w accept-line
else
zle -w delete-char-or-list
fi