20 lines
300 B
Bash
20 lines
300 B
Bash
#!/bin/zsh
|
|
|
|
z-history() {
|
|
local list
|
|
|
|
zparseopts -E l=list
|
|
if [[ -n "$list" ]]; then
|
|
builtin fc "$@"
|
|
else
|
|
[[ ${@[-1]-} = *[0-9]* ]] && builtin fc -il "$@" || builtin fc -il "$@" 1
|
|
fi
|
|
}
|
|
|
|
z-grephist() {
|
|
local x
|
|
|
|
x=$1 ; shift
|
|
z-history -m "*${x}*" "$@"
|
|
}
|