Reverted old history behaviour while fixing parsing bug

This commit is contained in:
MoAlkhateeb 2024-04-09 17:58:11 +03:00
commit 4e6ca8dc3e

View file

@ -3,7 +3,10 @@ function omz_history {
local clear list local clear list
zparseopts -E c=clear l=list zparseopts -E c=clear l=list
if [[ -n "$clear" ]]; then if [[ $# -eq 0 ]]; then
# if no arguments provided, show full history starting from 1
builtin fc -l 1
elif [[ -n "$clear" ]]; then
# if -c provided, clobber the history file # if -c provided, clobber the history file
echo -n >| "$HISTFILE" echo -n >| "$HISTFILE"
fc -p "$HISTFILE" fc -p "$HISTFILE"