diff --git a/Examples.md b/Examples.md index 22f449b..8b4acd0 100644 --- a/Examples.md +++ b/Examples.md @@ -666,7 +666,7 @@ like normal z when used with arguments but displays an fzf prompt when used with unalias z 2> /dev/null z() { [ $# -gt 0 ] && _z "$*" && return - cd "$(_z -l 2>&1 | fzf --height 40% --nth 2.. --reverse --inline-info +s --tac --query "$*" | sed 's/^[0-9,.]* *//')" + cd "$(_z -l 2>&1 | fzf --height 40% --nth 2.. --reverse --inline-info +s --tac --query "${*##-* }" | sed 's/^[0-9,.]* *//')" } ```