0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00

fix(history): revert to old behavior when no args passed (#12341)

* Fixed a bug in *omz_history* where it would automatically create a file when run with the -p flag

* Reverted old history behaviour while fixing parsing bug
This commit is contained in:
MoAlkhateeb 2024-04-09 19:09:26 +03:00 committed by GitHub
parent f85f501bcf
commit 605d76616a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,10 @@ function omz_history {
local clear 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
echo -n >| "$HISTFILE"
fc -p "$HISTFILE"