Skip to content

Instantly share code, notes, and snippets.

@csexton
Created January 27, 2015 20:01
Show Gist options
  • Save csexton/c1b271d0ee97b1057515 to your computer and use it in GitHub Desktop.
Save csexton/c1b271d0ee97b1057515 to your computer and use it in GitHub Desktop.
Use a fuzzy finder to open a file in $EDITOR
# v Command {{{
# Fuzzy file opener in your editor
v(){
file=$(fzf)
[[ -n "$file" ]] && $EDITOR $file
}
# }}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment