Skip to content

Instantly share code, notes, and snippets.

@whazzmaster
Forked from BaseCase/fuz.sh
Created December 7, 2017 16:11
Show Gist options
  • Save whazzmaster/3af35813437d25b08d1622f753dc7ba1 to your computer and use it in GitHub Desktop.
Save whazzmaster/3af35813437d25b08d1622f753dc7ba1 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
set -e
main() {
previous_file="$1"
file_to_edit=`select_file $previous_file`
if [ -n "$file_to_edit" ] ; then
"$EDITOR" "$file_to_edit"
main "$file_to_edit"
fi
}
select_file() {
given_file="$1"
fzf --preview="cat {}" --preview-window=right:70%:wrap --query="$given_file"
}
main ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment