From 75ad4982d667f6f73148f647dabd32319275baae Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Wed, 26 Apr 2017 18:31:05 +0900 Subject: [PATCH] z with --inline-info --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index c89937f..7057006 100644 --- a/Examples.md +++ b/Examples.md @@ -532,7 +532,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% --reverse +s --tac --query "$*" | sed 's/^[0-9,.]* *//')" + cd "$(_z -l 2>&1 | fzf --height 40% --reverse --inline-info +s --tac --query "$*" | sed 's/^[0-9,.]* *//')" } ```