How using fzf in new places rocks
Thanks to joshbranchaud and gabrielreis for these:
Fuzzy git checkout (alias in git config):
[alias]
fco = !git branch | fzf +m | awk '{print $1}' | xargs git checkout
Then just use git fco
and get an interactive fzf
session to look through the available branches!
Fuzzy rails routes:
rails routes | fzf
Fuzzy search your routes without needing to run rails routes
multiple times!