1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 07:20:09 +00:00

fix(history): fix history -c (#12362)

Fixes #12362
This commit is contained in:
Marc Cornellà 2024-04-18 07:12:32 +02:00
parent 1ed8d4b555
commit eafa78217d
No known key found for this signature in database
GPG key ID: 0314585E776A9C1B

View file

@ -4,14 +4,14 @@ function omz_history {
local clear list stamp
zparseopts -E -D c=clear l=list f=stamp E=stamp i=stamp
if [[ $# -eq 0 ]]; then
# if no arguments provided, show full history starting from 1
builtin fc $stamp -l 1
elif [[ -n "$clear" ]]; then
if [[ -n "$clear" ]]; then
# if -c provided, clobber the history file
echo -n >| "$HISTFILE"
fc -p "$HISTFILE"
echo >&2 History file deleted.
elif [[ $# -eq 0 ]]; then
# if no arguments provided, show full history starting from 1
builtin fc $stamp -l 1
else
# otherwise, run `fc -l` with a custom format
builtin fc $stamp -l "$@"