From f02bb4fdac691dda6fff0c0e97441aa0d814b72c Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Thu, 20 Mar 2014 01:57:57 +0900 Subject: [PATCH] Add `fe` command to examples section as suggested in #27 --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index 497c0bd..259ed69 100644 --- a/README.md +++ b/README.md @@ -176,6 +176,29 @@ fco() { commit=$(echo "$commits" | fzf +s +m -e) && git checkout $(echo "$commit" | sed "s/ .*//") } + +# fq1 [QUERY] +# - Immediately select the file when there's only one match. +# If not, start the fuzzy finder as usual. +fq1() { + local lines + lines=$(fzf --filter="$1" --no-sort) + if [ -z "$lines" ]; then + return 1 + elif [ $(wc -l <<< "$lines") -eq 1 ]; then + echo "$lines" + else + echo "$lines" | fzf --query="$1" + fi +} + +# fe [QUERY] +# - Open the selected file with the default editor +# (Bypass fuzzy finder when there's only one match) +fe() { + local file + file=$(fq1 "$1") && ${EDITOR:-vim} "$file" +} ``` Key bindings for command line