mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
Allow overriding -l flag in history
This commit is contained in:
parent
03758416fe
commit
f8180c3a64
1 changed files with 2 additions and 0 deletions
|
@ -5,6 +5,8 @@ function omz_history {
|
|||
if [[ "${@[(i)-c]}" -le $# ]]; then
|
||||
echo -n >| "$HISTFILE"
|
||||
echo >&2 History file deleted. Reload the session to see its effects.
|
||||
elif [[ "${@[(i)-l]}" -le $# ]]; then
|
||||
builtin fc "$@"
|
||||
else
|
||||
builtin fc "$@" -l 1
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue