mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 01:48:34 -07:00
fix(history): fix confirmation prompt to allow bypass
See https://github.com/ohmyzsh/ohmyzsh/issues/12472#issuecomment-2171461005
This commit is contained in:
parent
373a1fd585
commit
c83ca51b1b
@ -9,9 +9,8 @@ function omz_history {
|
||||
|
||||
# confirm action before deleting history
|
||||
print -nu2 "This action will irreversibly delete your command history. Are you sure? [y/N] "
|
||||
builtin read -k1
|
||||
[[ "$REPLY" = $'\n' ]] || print -u2
|
||||
[[ "$REPLY" != ([yY]) ]] && return 0
|
||||
builtin read
|
||||
[[ "$REPLY" = [yY] ]] || return 0
|
||||
|
||||
print -nu2 >| "$HISTFILE"
|
||||
fc -p "$HISTFILE"
|
||||
|
Loading…
Reference in New Issue
Block a user