mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2025-04-04 08:21:50 +00:00
Update example: suppress error message from fc on bash (#37)
`'fc' -l 1` generated an error message on bash
This commit is contained in:
parent
8b80136a87
commit
6ad38bdad3
@ -172,7 +172,7 @@ fda() {
|
|||||||
|
|
||||||
# fh - repeat history
|
# fh - repeat history
|
||||||
fh() {
|
fh() {
|
||||||
eval $(('fc' -l 1 || 'history') | fzf +s | sed 's/ *[0-9]* *//')
|
eval $(([ -n "$ZSH_NAME" ] && fc -l 1 || history) | fzf +s | sed 's/ *[0-9]* *//')
|
||||||
}
|
}
|
||||||
|
|
||||||
# fkill - kill process
|
# fkill - kill process
|
||||||
|
Loading…
x
Reference in New Issue
Block a user