From 5592d6ed815682d6b09e05861848f0178d6b1e8e Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 1 Mar 2015 12:43:56 +0900 Subject: [PATCH] Updated Examples (markdown) --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index 17f4800..bc55b25 100644 --- a/Examples.md +++ b/Examples.md @@ -125,7 +125,7 @@ fbr() { fco() { local commits commit commits=$(git log --pretty=oneline --abbrev-commit --reverse) && - commit=$(echo "$commits" | fzf --tac +m -e) && + commit=$(echo "$commits" | fzf --tac +s +m -e) && git checkout $(echo "$commit" | sed "s/ .*//") } ```